about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2012-01-20 14:17:40 -0800
committerNiko Matsakis <niko@alum.mit.edu>2012-01-21 19:31:52 -0800
commitec8273587c4fad80ef7f74f30adfa71a26fa097b (patch)
tree2f58ef3270a97331054fe763df30da7af29e1294
parent42b97f317a92d6d88456a036728812f120e9fd3f (diff)
downloadrust-ec8273587c4fad80ef7f74f30adfa71a26fa097b.tar.gz
rust-ec8273587c4fad80ef7f74f30adfa71a26fa097b.zip
update to new tag syntax
-rw-r--r--src/test/run-pass/alignment-gep-tup-like-2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/alignment-gep-tup-like-2.rs b/src/test/run-pass/alignment-gep-tup-like-2.rs
index 0c3b83a4d09..f3fe07fcc2b 100644
--- a/src/test/run-pass/alignment-gep-tup-like-2.rs
+++ b/src/test/run-pass/alignment-gep-tup-like-2.rs
@@ -2,7 +2,7 @@ type pair<A,B> = {
     a: A, b: B
 };
 
-tag rec<A> = _rec<A>;
+enum rec<A> = _rec<A>;
 type _rec<A> = {
     val: A,
     mutable rec: option<@rec<A>>