summary refs log tree commit diff
path: root/src/test/ui/issues/issue-26614.rs
blob: 11c22020733bb92c6768bdcabbce66322ae184aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// compile-pass
// skip-codegen
#![allow(warnings)]
trait Mirror {
    type It;
}

impl<T> Mirror for T {
    type It = Self;
}



fn main() {
    let c: <u32 as Mirror>::It = 5;
    const CCCC: <u32 as Mirror>::It = 5;
}