mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-19 07:16:31 +00:00
9 lines
140 B
Rust
9 lines
140 B
Rust
enum Test {
|
|
Foo = 0
|
|
}
|
|
|
|
fn main() {
|
|
let _x = Test::Foo as *const isize;
|
|
//~^ ERROR casting `Test` as `*const isize` is invalid
|
|
}
|