]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/associated-const-type-parameters.rs
rustc_resolve: don't deny outer type parameters in embedded constants.
[rust.git] / src / test / run-pass / associated-const-type-parameters.rs
1 // Copyright 2015 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 #![feature(associated_consts)]
12
13 trait Foo {
14     const X: i32;
15     fn get_x() -> i32 {
16        Self::X
17     }
18 }
19
20 struct Abc;
21 impl Foo for Abc {
22     const X: i32 = 11;
23 }
24
25 struct Def;
26 impl Foo for Def {
27     const X: i32 = 97;
28 }
29
30 struct Proxy<T>(T);
31
32 impl<T: Foo> Foo for Proxy<T> {
33     const X: i32 = T::X;
34 }
35
36 fn sub<A: Foo, B: Foo>() -> i32 {
37     A::X - B::X
38 }
39
40 trait Bar: Foo {
41     const Y: i32 = Self::X;
42 }
43
44 fn main() {
45     assert_eq!(11, Abc::X);
46     assert_eq!(97, Def::X);
47     assert_eq!(11, Abc::get_x());
48     assert_eq!(97, Def::get_x());
49     assert_eq!(-86, sub::<Abc, Def>());
50     assert_eq!(86, sub::<Def, Abc>());
51     assert_eq!(-86, sub::<Proxy<Abc>, Def>());
52     assert_eq!(-86, sub::<Abc, Proxy<Def>>());
53     assert_eq!(86, sub::<Proxy<Def>, Proxy<Abc>>());
54 }