]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/associated-types-sugar-path.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / associated-types-sugar-path.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 // Test paths to associated types using the type-parameter-only sugar.
12
13 // pretty-expanded FIXME #23616
14
15 pub trait Foo {
16     type A;
17     fn boo(&self) -> Self::A;
18 }
19
20 impl Foo for int {
21     type A = uint;
22     fn boo(&self) -> uint {
23         5
24     }
25 }
26
27 // Using a type via a function.
28 pub fn bar<T: Foo>(a: T, x: T::A) -> T::A {
29     let _: T::A = a.boo();
30     x
31 }
32
33 // Using a type via an impl.
34 trait C {
35     fn f();
36     fn g(&self) { }
37 }
38 struct B<X>(X);
39 impl<T: Foo> C for B<T> {
40     fn f() {
41         let x: T::A = panic!();
42     }
43 }
44
45 pub fn main() {
46     let z: uint = bar(2, 4);
47 }