about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-02-21 17:30:32 -0800
committerbors <bors@rust-lang.org>2013-02-21 17:30:32 -0800
commitf5cc0b98308531db44a5c1cb15c08f4fc909c41c (patch)
treed30f83d5e3f9b75fc55f0da930325cf48390b6e6 /src/libsyntax
parentab784b7de522c358e682e00c3a01d44d32c56943 (diff)
parent48c1c3cfc076bf155c1e54afa41ec560b343f52d (diff)
downloadrust-f5cc0b98308531db44a5c1cb15c08f4fc909c41c.tar.gz
rust-f5cc0b98308531db44a5c1cb15c08f4fc909c41c.zip
auto merge of #5075 : luqmana/rust/derec, r=catamorphism
Now only `lib core/pipes.rs` has `#[allow(structural_records)]`. That can be removed after a snapshot.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index d0c857d363b..871ba5e8401 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -1926,7 +1926,7 @@ pub impl Parser {
             fields.push(self.parse_field(token::COLON));
         }
         self.expect(token::RBRACE);
-        //self.warn(~"REC");
+        self.warn(~"REC");
         return expr_rec(fields, base);
     }