blob: c6d3016712720904a1482c061dd5cebb89d6dae7 [file] [log] [blame]
fn main() {
use std::mem::{transmute, swap};
let a = 1;
let b = 2;
unsafe {swap::<&mut _>(transmute(&a), transmute(&b))};
//~^ ERROR type annotations needed
}