Skip to content

Commit 1350b5e

Browse files
committed
---
yaml --- r: 1593 b: refs/heads/master c: 5f29988 h: refs/heads/master i: 1591: 67418ab v: v3
1 parent ea8a43a commit 1350b5e

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 36b81abf619171ccbdee8ca6471f340c5a4e0ed5
2+
refs/heads/master: 5f29988a2cf9263631bf79b758d1f5d3e33dbb80

trunk/src/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,7 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \
414414
test/run-pass/generic-fn-box.rs \
415415
test/run-pass/generic-tup.rs \
416416
test/run-pass/iter-ret.rs \
417+
test/run-pass/leak-tag-copy.rs \
417418
test/run-pass/lib-io.rs \
418419
test/run-pass/mlist-cycle.rs \
419420
test/run-pass/obj-as.rs \
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
tag t {
2+
a;
3+
b(@int);
4+
}
5+
6+
fn main() {
7+
auto x = b(@10);
8+
x = a;
9+
}

0 commit comments

Comments
 (0)