-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recover from pub let
#107047
Recover from pub let
#107047
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,6 +111,11 @@ impl<'a> Parser<'a> { | |
// Do not attempt to parse an expression if we're done here. | ||
self.error_outer_attrs(attrs); | ||
self.mk_stmt(lo, StmtKind::Empty) | ||
} else if self.prev_token.is_keyword(kw::Pub) && self.token.is_keyword(kw::Let) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The name of the function is |
||
let err = self.sess.create_err(errors::VisibilityFollowedByLet { | ||
span: self.prev_token.span.to(self.token.span), | ||
}); | ||
return Err(err); | ||
} else if self.token != token::CloseDelim(Delimiter::Brace) { | ||
// Remainder are line-expr stmts. | ||
let e = match force_collect { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
let a = 1; | ||
//~^ ERROR `let` is invalid outside of a function | ||
|
||
fn main() { | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
error: `let` is invalid outside of a function | ||
--> $DIR/let-outside-function.rs:1:1 | ||
| | ||
LL | let a = 1; | ||
| ^^^ | ||
| | ||
help: consider using `static` instead of `let` | ||
| | ||
LL | static a = 1; | ||
| ~~~~~~ | ||
help: consider using `const` instead of `let` | ||
| | ||
LL | const a = 1; | ||
| ~~~~~ | ||
|
||
error: aborting due to previous error | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// run-rustfix | ||
|
||
#![allow(unused_variables)] | ||
|
||
fn main() { | ||
let x = 1; | ||
//~^ ERROR visibility `pub` is not followed by an item | ||
//~^^ ERROR visibility does not apply to `let` statement | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// run-rustfix | ||
|
||
#![allow(unused_variables)] | ||
|
||
fn main() { | ||
pub let x = 1; | ||
//~^ ERROR visibility `pub` is not followed by an item | ||
//~^^ ERROR visibility does not apply to `let` statement | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
error: visibility `pub` is not followed by an item | ||
--> $DIR/pub-let.rs:6:5 | ||
| | ||
LL | pub let x = 1; | ||
| ^^^ the visibility | ||
| | ||
= help: you likely meant to define an item, e.g., `pub fn foo() {}` | ||
|
||
error: visibility does not apply to `let` statement | ||
--> $DIR/pub-let.rs:6:5 | ||
| | ||
LL | pub let x = 1; | ||
| ^^^^^^^ help: remove pub: `let` | ||
|
||
error: aborting due to 2 previous errors | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
error: expected item, found keyword `let` | ||
error: `let` is invalid outside of a function | ||
--> $DIR/suggest-const-for-global-var.rs:1:1 | ||
| | ||
LL | let X: i32 = 12; | ||
| ^^^ consider using `const` or `static` instead of `let` for global variables | ||
| ^^^ | ||
| | ||
help: consider using `static` instead of `let` | ||
| | ||
LL | static X: i32 = 12; | ||
| ~~~~~~ | ||
help: consider using `const` instead of `let` | ||
| | ||
LL | const X: i32 = 12; | ||
| ~~~~~ | ||
|
||
error: aborting due to previous error | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good.