We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b81ab commit 5f29988Copy full SHA for 5f29988
src/Makefile
@@ -414,6 +414,7 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \
414
test/run-pass/generic-fn-box.rs \
415
test/run-pass/generic-tup.rs \
416
test/run-pass/iter-ret.rs \
417
+ test/run-pass/leak-tag-copy.rs \
418
test/run-pass/lib-io.rs \
419
test/run-pass/mlist-cycle.rs \
420
test/run-pass/obj-as.rs \
src/test/run-pass/leak-tag-copy.rs
@@ -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