]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/bad-mid-path-type-params.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[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 struct S<T> {
14     contents: T,
15 }
16
17 impl<T> S<T> {
18     fn new<U>(x: T, _: U) -> S<T> {
19         S {
20             contents: x,
21         }
22     }
23 }
24
25 trait Trait<T> {
26     fn new<U>(x: T, y: U) -> Self;
27 }
28
29 struct S2 {
30     contents: isize,
31 }
32
33 impl Trait<isize> for S2 {
34     fn new<U>(x: isize, _: U) -> S2 {
35         S2 {
36             contents: x,
37         }
38     }
39 }
40
41 fn foo<'a>() {
42     let _ = S::new::<isize,f64>(1, 1.0);
43     //~^ ERROR too many type parameters provided
44
45     let _ = S::<'a,isize>::new::<f64>(1, 1.0);
46     //~^ ERROR too many lifetime parameters provided
47
48     let _: S2 = Trait::new::<isize,f64>(1, 1.0);
49     //~^ ERROR too many type parameters provided
50
51     let _: S2 = Trait::<'a,isize>::new::<f64>(1, 1.0);
52     //~^ ERROR too many lifetime parameters provided
53 }
54
55 fn main() {}