]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/mid-path-type-params.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / 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 // pretty-expanded FIXME #23616
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: int,
31 }
32
33 impl Trait<int> for S2 {
34     fn new<U>(x: int, _: U) -> S2 {
35         S2 {
36             contents: x,
37         }
38     }
39 }
40
41 pub fn main() {
42     let _ = S::<int>::new::<f64>(1, 1.0);
43     let _: S2 = Trait::<int>::new::<f64>(1, 1.0);
44 }