about summary refs log tree commit diff
path: root/tests/ui/cast/associated-type-bounds-cast-54094.rs
blob: c9f307e95b9a09a949fd11cd345e09d50240a13d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// https://github.com/rust-lang/rust/issues/54094
//@ check-pass
trait Zoo {
    type X;
}

impl Zoo for u16 {
    type X = usize;
}

fn foo(abc: <u16 as Zoo>::X) {}

fn main() {
    let x: *const u8 = foo as _;
}