mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
8d91e71e9a
These changes were made by manually running `rustfmt` on all of the test files, and then manually undoing all cases where the original formatting appeared to have been deliberate. `rustfmt +nightly --config-path=/dev/null --edition=2021 tests/run-coverage*/**/*.rs`
34 lines
584 B
Rust
34 lines
584 B
Rust
#![allow(unused_assignments)]
|
|
// failure-status: 1
|
|
|
|
struct Firework {
|
|
strength: i32,
|
|
}
|
|
|
|
impl Drop for Firework {
|
|
fn drop(&mut self) {
|
|
println!("BOOM times {}!!!", self.strength);
|
|
}
|
|
}
|
|
|
|
fn main() -> Result<(), u8> {
|
|
let _firecracker = Firework { strength: 1 };
|
|
|
|
let _tnt = Firework { strength: 100 };
|
|
|
|
if true {
|
|
println!("Exiting with error...");
|
|
return Err(1);
|
|
}
|
|
|
|
let _ = Firework { strength: 1000 };
|
|
|
|
Ok(())
|
|
}
|
|
|
|
// Expected program output:
|
|
// Exiting with error...
|
|
// BOOM times 100!!!
|
|
// BOOM times 1!!!
|
|
// Error: 1
|