blob: e6b3f9ffab73c3c1995a8739db37afff58d5e53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// check-pass
#![allow(dead_code)]
#![allow(stable_features)]
#![feature(associated_consts)]
impl A for i32 {
type Foo = u32;
}
impl B for u32 {
const BAR: i32 = 0;
}
trait A {
type Foo: B;
}
trait B {
const BAR: i32;
}
fn generic<T: A>() {
// This panics if the universal function call syntax is used as well
println!("{}", T::Foo::BAR);
}
fn main() {}
|