diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-05-20 20:28:00 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-05-20 20:28:00 -0700 |
| commit | fd88e2b7291170d0dac536130307a8cc680c8294 (patch) | |
| tree | c35b662d096e00957887bfe920620c700ab4d651 /src/libsyntax/parse/parser.rs | |
| parent | e546452727379f701f2104eb826141a29d4b39fd (diff) | |
| download | rust-fd88e2b7291170d0dac536130307a8cc680c8294.tar.gz rust-fd88e2b7291170d0dac536130307a8cc680c8294.zip | |
syntax: Parse global paths in patterns
Closes #6449
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -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 c42febcd607..5829f63b2c5 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -2920,7 +2920,7 @@ impl<'a> Parser<'a> { _ => {} } - if !is_ident_or_path(&self.token) + if (!is_ident_or_path(&self.token) && self.token != token::MOD_SEP) || self.is_keyword(keywords::True) || self.is_keyword(keywords::False) { // Parse an expression pattern or exp .. exp. |
