Skip to content

Commit a68d438

Browse files
committedAug 17, 2015
Regression tests for Issue rust-lang#27401.
1 parent 413e0b2 commit a68d438

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed
 
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// The stack-local drop flag associated with binding `let a = ...;`
12+
// (that occurred in a loop) were failing to (re-)initialize the drop
13+
// flag after it had been set to "moved" during an earlier iteration
14+
// of the loop.
15+
//
16+
// This is a regression test to ensure we don't let that behavior
17+
// creep back in.
18+
//
19+
// See also issue-27401-match-bind.rs
20+
21+
struct A<'a>(&'a mut i32);
22+
23+
impl<'a> Drop for A<'a> {
24+
fn drop(&mut self) {
25+
*self.0 += 1;
26+
}
27+
}
28+
29+
fn main() {
30+
let mut cnt = 0;
31+
for i in 0..2 {
32+
let a = A(&mut cnt);
33+
if i == 1 {
34+
break
35+
}
36+
drop(a);
37+
}
38+
assert_eq!(cnt, 2);
39+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// The stack-local drop flag for binding in match-arm `(_, a) => ...`
12+
// (that occurred in a loop) were failing to (re-)initialize the drop
13+
// flag after it had been set to "moved" during an earlier iteration
14+
// of the loop.
15+
//
16+
// This is a regression test to ensure we don't let that behavior
17+
// creep back in.
18+
//
19+
// See also issue-27401-let-init.rs
20+
21+
use std::cell::Cell;
22+
23+
struct A<'a>(&'a Cell<i32>);
24+
25+
impl<'a> Drop for A<'a> {
26+
fn drop(&mut self) {
27+
let old_val = self.0.get();
28+
self.0.set(old_val + 1);
29+
}
30+
}
31+
32+
fn main() {
33+
let cnt = Cell::new(0);
34+
for i in 0..2 {
35+
match (A(&cnt), A(&cnt)) {
36+
(_, aaah) => {
37+
if i == 1 {
38+
break
39+
}
40+
drop(aaah);
41+
}
42+
}
43+
}
44+
assert_eq!(cnt.get(), 4);
45+
}

0 commit comments

Comments
 (0)
Please sign in to comment.