mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-10 17:07:36 +00:00
8 lines
95 B
Rust
8 lines
95 B
Rust
//@ run-fail
|
|
//@ error-pattern:1 == 2
|
|
//@ needs-subprocess
|
|
|
|
fn main() {
|
|
assert!(1 == 2);
|
|
}
|