mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
163 B
Rust
15 lines
163 B
Rust
// 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 _;
|
|
}
|