blob: 4faf6004ad6fccdd1662a2cd30a9f20869daf026 [file] [log] [blame]
// 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
}