diff options
| author | Luqman Aden <laden@csclub.uwaterloo.ca> | 2013-02-21 15:19:40 -0800 |
|---|---|---|
| committer | Luqman Aden <laden@csclub.uwaterloo.ca> | 2013-02-21 15:19:40 -0800 |
| commit | 9ea6a496964e8f380f257cfd281b364f3337176b (patch) | |
| tree | 07a1e1e45770927e63f5b1d51758720d43b31d1f /src/libsyntax/parse | |
| parent | e0767bf24f7a526430472290825ebd9158cb1dcc (diff) | |
| download | rust-9ea6a496964e8f380f257cfd281b364f3337176b.tar.gz rust-9ea6a496964e8f380f257cfd281b364f3337176b.zip | |
Remove the last bits of structural records from tests/rustc/rusti/rustpkg.
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
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); } |
