blob: 906b443c9fab86602fe0bceae29033b0e0b77d5b [file] [log] [blame]
enum Test {
Foo = 0
}
fn main() {
let _x = Test::Foo as *const isize;
//~^ ERROR casting `Test` as `*const isize` is invalid
}