mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 06:34:22 +00:00
3 lines
87 B
Rust
3 lines
87 B
Rust
//@ error-pattern: non-primitive cast: `u32` as `()`
|
|
fn main() { let u = 0u32 as (); }
|