mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
commit
b6faae11f4
@ -10,7 +10,7 @@
|
||||
|
||||
use self::Destination::*;
|
||||
|
||||
use codemap::{self, COMMAND_LINE_SP, COMMAND_LINE_EXPN, Pos, Span};
|
||||
use codemap::{self, COMMAND_LINE_SP, COMMAND_LINE_EXPN, DUMMY_SP, Pos, Span};
|
||||
use diagnostics;
|
||||
|
||||
use errors::{Level, RenderSpan, DiagnosticBuilder};
|
||||
@ -109,8 +109,8 @@ impl Emitter for EmitterWriter {
|
||||
lvl: Level) {
|
||||
let error = match sp {
|
||||
Some(COMMAND_LINE_SP) => self.emit_(FileLine(COMMAND_LINE_SP), msg, code, lvl),
|
||||
Some(DUMMY_SP) | None => print_diagnostic(&mut self.dst, "", lvl, msg, code),
|
||||
Some(sp) => self.emit_(FullSpan(sp), msg, code, lvl),
|
||||
None => print_diagnostic(&mut self.dst, "", lvl, msg, code),
|
||||
};
|
||||
|
||||
if let Err(e) = error {
|
||||
|
@ -2218,6 +2218,12 @@ impl<'a> Parser<'a> {
|
||||
ex = ExprBreak(None);
|
||||
}
|
||||
hi = self.last_span.hi;
|
||||
} else if self.token.is_keyword(keywords::Let) {
|
||||
// Catch this syntax error here, instead of in `check_strict_keywords`, so
|
||||
// that we can explicitly mention that let is not to be used as an expression
|
||||
let mut db = self.fatal("expected expression, found statement (`let`)");
|
||||
db.note("variable declaration using `let` is a statement");
|
||||
return Err(db);
|
||||
} else if self.check(&token::ModSep) ||
|
||||
self.token.is_ident() &&
|
||||
!self.check_keyword(keywords::True) &&
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
// ignore-cross-compile
|
||||
|
||||
// error-pattern:expected identifier, found keyword `let`
|
||||
// error-pattern:expected expression, found statement (`let`)
|
||||
|
||||
#![feature(quote, rustc_private)]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user