Rollup merge of #61627 - davidtwco:ice-async-fn-lint, r=alexcrichton

Add regression test for #61452.

Fixes #61452.

Turns out this ICE had already been fixed, so this PR only adds a regression test.
This commit is contained in:
Mazdak Farrokhzad 2019-06-08 03:33:59 +02:00 committed by GitHub
commit 6d25bcdb75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,14 @@
// edition:2018
#![feature(async_await)]
pub async fn f(x: Option<usize>) {
x.take();
//~^ ERROR cannot borrow `x` as mutable, as it is not declared as mutable [E0596]
}
pub async fn g(x: usize) {
x += 1;
//~^ ERROR cannot assign twice to immutable variable `x` [E0384]
}
fn main() {}

View file

@ -0,0 +1,23 @@
error[E0596]: cannot borrow `x` as mutable, as it is not declared as mutable
--> $DIR/issue-61452.rs:5:5
|
LL | pub async fn f(x: Option<usize>) {
| - help: consider changing this to be mutable: `mut x`
LL | x.take();
| ^ cannot borrow as mutable
error[E0384]: cannot assign twice to immutable variable `x`
--> $DIR/issue-61452.rs:10:5
|
LL | pub async fn g(x: usize) {
| -
| |
| first assignment to `x`
| help: make this binding mutable: `mut x`
LL | x += 1;
| ^^^^^^ cannot assign twice to immutable variable
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0384, E0596.
For more information about an error, try `rustc --explain E0384`.