summary refs log tree commit diff
path: root/src/comp/front
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-08-18 11:37:19 -0700
committerBrian Anderson <banderson@mozilla.com>2011-08-18 13:09:50 -0700
commitec898244f7b543dfe4c5a04fd42e638d7c521f7b (patch)
tree67f8f21d39c8dc25b78cb3dae72a7c3620feb383 /src/comp/front
parent250cc45c3bf4fc3e623e72b8b36d66a4e0fb1dcf (diff)
downloadrust-ec898244f7b543dfe4c5a04fd42e638d7c521f7b.tar.gz
rust-ec898244f7b543dfe4c5a04fd42e638d7c521f7b.zip
Remove seq_kind from ast::expr_vec
Diffstat (limited to 'src/comp/front')
-rw-r--r--src/comp/front/test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/test.rs b/src/comp/front/test.rs
index ce172c0062f..de6d67b46f1 100644
--- a/src/comp/front/test.rs
+++ b/src/comp/front/test.rs
@@ -236,7 +236,7 @@ fn mk_test_desc_vec(cx: &test_ctxt) -> @ast::expr {
     }
 
     ret @{id: cx.next_node_id(),
-          node: ast::expr_vec(descs, ast::imm, ast::sk_unique),
+          node: ast::expr_vec(descs, ast::imm),
           span: ast::dummy_sp()};
 }