diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2013-05-30 21:01:25 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2013-05-30 21:01:25 -0400 |
| commit | ce5fd302702a76e4b65a94128189b0f2d3a22c32 (patch) | |
| tree | 9378366d739d2758c7c06f885b8a47985935aa86 /src/libsyntax/parse | |
| parent | 21951e503d14deaefab27d8d560319213fdf5712 (diff) | |
| download | rust-ce5fd302702a76e4b65a94128189b0f2d3a22c32.tar.gz rust-ce5fd302702a76e4b65a94128189b0f2d3a22c32.zip | |
Fix parser test
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs index c054bf55274..9d5cb131fec 100644 --- a/src/libsyntax/parse/mod.rs +++ b/src/libsyntax/parse/mod.rs @@ -485,7 +485,7 @@ mod test { #[test] fn parse_ident_pat () { let parser = string_to_parser(@~"b"); - assert_eq!(parser.parse_pat(false), + assert_eq!(parser.parse_pat(), @ast::pat{id:1, // fixme node: ast::pat_ident(ast::bind_infer, @ast::Path{ |
