blob: f210d1a0a90c59acf3b3c9e5e829d3ad4a83347a [file] [log] [blame]
// check-pass
#![feature(extern_types)]
extern {
type Opaque;
}
const FOO: *const u8 = &42 as *const _ as *const Opaque as *const u8;
fn main() {
let _foo = FOO;
}