Skip to content

Commit 266fdd0

Browse files
committed
test for issue #2443
1 parent 9e6a068 commit 266fdd0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// xfail-test #2443
2+
// exec-env:RUST_POISON_ON_FREE
3+
4+
fn it_takes_two(x: @int, -y: @int) -> int {
5+
free(y);
6+
#debug["about to deref"];
7+
*x
8+
}
9+
10+
fn free<T>(-_t: T) {
11+
}
12+
13+
fn main() {
14+
let z = @3;
15+
assert 3 == it_takes_two(z, z);
16+
}

0 commit comments

Comments
 (0)