rust/tests/mir-opt/remove_storage_markers.rs
2023-04-06 10:08:07 +01:00

15 lines
354 B
Rust

// ignore-wasm32 compiled with panic=abort by default
// unit-test: RemoveStorageMarkers
// Checks that storage markers are removed at opt-level=0.
//
// compile-flags: -C opt-level=0 -Coverflow-checks=off
// EMIT_MIR remove_storage_markers.main.RemoveStorageMarkers.diff
fn main() {
let mut sum = 0;
for i in 0..10 {
sum += i;
}
}