make sure [CONST; N] drops N times

This commit is contained in:
Ralf Jung 2020-11-28 17:32:48 +01:00
parent f8d4883dbe
commit 7f3e18cc2b

View file

@ -1,4 +1,4 @@
// check-pass
// run-pass
// Repeating a *constant* of non-Copy type (not just a constant expression) is already stable.
@ -8,6 +8,20 @@ pub fn bar() -> [Vec<i32>; 2] {
[EMPTY; 2]
}
fn main() {
let x = bar();
struct Bomb;
impl Drop for Bomb {
fn drop(&mut self) {
panic!("BOOM!");
}
}
const BOOM: Bomb = Bomb;
fn main() {
let _x = bar();
// Make sure the destructor does not get called for empty arrays. `[CONST; N]` should
// instantiate (and then later drop) the const exactly `N` times.
let _x = [BOOM; 0];
}