]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/bad-mid-path-type-params.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / bad-mid-path-type-params.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-tidy-linelength
12
13 #![no_std]
14 #![feature(lang_items)]
15
16 #[lang="sized"]
17 pub trait Sized {}
18
19 struct S<T> {
20     contents: T,
21 }
22
23 impl<T> S<T> {
24     fn new<U>(x: T, _: U) -> S<T> {
25         S {
26             contents: x,
27         }
28     }
29 }
30
31 trait Trait<T> {
32     fn new<U>(x: T, y: U) -> Self;
33 }
34
35 struct S2 {
36     contents: isize,
37 }
38
39 impl Trait<isize> for S2 {
40     fn new<U>(x: isize, _: U) -> S2 {
41         S2 {
42             contents: x,
43         }
44     }
45 }
46
47 fn foo<'a>() {
48     let _ = S::new::<isize,f64>(1, 1.0);
49     //~^ ERROR too many type parameters provided
50
51     let _ = S::<'a,isize>::new::<f64>(1, 1.0);
52     //~^ ERROR too many lifetime parameters provided
53
54     let _: S2 = Trait::new::<isize,f64>(1, 1.0);
55     //~^ ERROR too many type parameters provided
56
57     let _: S2 = Trait::<'a,isize>::new::<f64>(1, 1.0);
58     //~^ ERROR too many lifetime parameters provided
59 }
60
61 fn main() {}