blob: 6e13a9ea8369bdd7124cbfcb1ff8cd0ade8b4ce7 [file] [log] [blame]
//@compile-flags: -Zmiri-retag-fields
// Checks that the test does not run forever (which relies on a fast path).
#![allow(dropping_copy_types)]
fn main() {
let array = [(); usize::MAX];
drop(array); // Pass the array to a function, retagging its fields
}