mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15c1a6b9e0
The `\n` in the output is a little surprising. The next commit will deal with it.
10 lines
270 B
Rust
10 lines
270 B
Rust
// run-fail
|
|
// check-run-results
|
|
// exec-env:RUST_BACKTRACE=0
|
|
// ignore-emscripten no processes
|
|
// ignore-tidy-linelength
|
|
|
|
fn main() {
|
|
assert!(1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20 + 21 + 22 + 23 + 24 + 25 == 0);
|
|
}
|