mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 10:31:15 +00:00
8 lines
136 B
Rust
8 lines
136 B
Rust
// run-fail
|
|
// error-pattern:panicked at 'assertion failed: false'
|
|
// ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
assert!(false);
|
|
}
|