diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2013-05-06 09:00:50 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2013-05-06 09:00:50 -0400 |
| commit | 6c0c3a44bd779ea35f75cb7dcadcd7e6edb4a433 (patch) | |
| tree | b999d88bc2577a38ef9d3adde2d072b4c728178b /src/libsyntax/parse/common.rs | |
| parent | 2ea52a38e59b85b4b6998661b38425ce29839aed (diff) | |
| parent | 6e6a4be19d8e6a2cedc66be6cc602db8a1e71acd (diff) | |
| download | rust-6c0c3a44bd779ea35f75cb7dcadcd7e6edb4a433.tar.gz rust-6c0c3a44bd779ea35f75cb7dcadcd7e6edb4a433.zip | |
Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze
Diffstat (limited to 'src/libsyntax/parse/common.rs')
| -rw-r--r-- | src/libsyntax/parse/common.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/common.rs b/src/libsyntax/parse/common.rs index 01f80c032e9..1df6860fede 100644 --- a/src/libsyntax/parse/common.rs +++ b/src/libsyntax/parse/common.rs @@ -122,7 +122,7 @@ pub impl Parser { fn parse_path_list_ident(&self) -> ast::path_list_ident { let lo = self.span.lo; let ident = self.parse_ident(); - let hi = self.span.hi; + let hi = self.last_span.hi; spanned(lo, hi, ast::path_list_ident_ { name: ident, id: self.get_id() }) } |
