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

6 lines
107 B
Rust
Raw Normal View History

2016-08-26 00:14:20 +02:00
fn takes_u8(_: u8) {}
fn main() {
unsafe { takes_u8(::std::mem::transmute(0u16)); } //~ ERROR E0512
}