rust/tests/mir-opt/remove_storage_markers.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
354 B
Rust
Raw Normal View History

2023-04-05 03:44:20 -05:00
// 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;
}
}