about summary refs log tree commit diff
path: root/src/librustsyntax/ast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustsyntax/ast.rs')
-rw-r--r--src/librustsyntax/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustsyntax/ast.rs b/src/librustsyntax/ast.rs
index 05a5a17b2f7..3404f277e8d 100644
--- a/src/librustsyntax/ast.rs
+++ b/src/librustsyntax/ast.rs
@@ -351,7 +351,7 @@ enum expr_ {
 }
 
 #[auto_serialize]
-type capture_item = {
+type capture_item = @{
     id: int,
     is_move: bool,
     name: ident, // Currently, can only capture a local var.