mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 18:14:56 +00:00
10 lines
191 B
Rust
10 lines
191 B
Rust
// run-fail
|
|
// error-pattern:assertion `left != right` failed
|
|
// error-pattern: left: 14
|
|
// error-pattern: right: 14
|
|
// ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
assert_ne!(14, 14);
|
|
}
|