rust/tests/ui/issues/issue-54094.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
163 B
Rust
Raw Normal View History

// 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 _;
2020-04-10 10:51:27 +00:00
}