Skip to content

Commit 0038235

Browse files
committed
---
yaml --- r: 1539 b: refs/heads/master c: 3869b3b h: refs/heads/master i: 1537: 6320225 1535: aa3059a v: v3
1 parent e390da5 commit 0038235

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

[refs]

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 7fa8936ece50c5d58edcf3c3166e9570ba6e6197
2+
refs/heads/master: 3869b3bfe489fc8db37b4436a9a38e732cc3d219

trunk/src/Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,6 @@ TEST_XFAILS_BOOT := $(TASK_XFAILS) \
410410
test/run-pass/vec-slice.rs \
411411
test/run-pass/fn-lval.rs \
412412
test/run-pass/generic-fn-box.rs \
413-
test/run-pass/generic-recursive-tag.rs \
414413
test/run-pass/generic-tup.rs \
415414
test/run-pass/iter-ret.rs \
416415
test/run-pass/lib-io.rs \
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
tag list[T] {
22
cons(@T, @list[T]);
3-
nil();
3+
nil;
44
}
55

66
fn main() {
7-
let list[int] a = cons[int](10, cons[int](12, cons[int](13, nil[int]())));
8-
}
7+
let list[int] a = cons[int](@10, @cons[int](@12, @cons[int](@13,
8+
@nil[int])));
9+
}

0 commit comments

Comments
 (0)