make sure [CONST; N] drops N times
This commit is contained in:
parent
f8d4883dbe
commit
7f3e18cc2b
1 changed files with 17 additions and 3 deletions
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue