-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lower closure prototype after its body.
- Loading branch information
Showing
3 changed files
with
86 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Check that using the parameter name in its type does not ICE. | ||
// edition:2018 | ||
|
||
#![feature(async_closure)] | ||
|
||
fn main() { | ||
let _ = |x: x| x; //~ ERROR expected type | ||
let _ = |x: bool| -> x { x }; //~ ERROR expected type | ||
let _ = async move |x: x| x; //~ ERROR expected type | ||
let _ = async move |x: bool| -> x { x }; //~ ERROR expected type | ||
} | ||
|
||
fn foo(x: x) {} //~ ERROR expected type | ||
fn foo_ret(x: bool) -> x {} //~ ERROR expected type | ||
|
||
async fn async_foo(x: x) {} //~ ERROR expected type | ||
async fn async_foo_ret(x: bool) -> x {} //~ ERROR expected type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
error[E0573]: expected type, found local variable `x` | ||
--> $DIR/local-type-mix.rs:7:17 | ||
| | ||
LL | let _ = |x: x| x; | ||
| ^ not a type | ||
|
||
error[E0573]: expected type, found local variable `x` | ||
--> $DIR/local-type-mix.rs:8:26 | ||
| | ||
LL | let _ = |x: bool| -> x { x }; | ||
| ^ not a type | ||
|
||
error[E0573]: expected type, found local variable `x` | ||
--> $DIR/local-type-mix.rs:9:28 | ||
| | ||
LL | let _ = async move |x: x| x; | ||
| ^ not a type | ||
|
||
error[E0573]: expected type, found local variable `x` | ||
--> $DIR/local-type-mix.rs:10:37 | ||
| | ||
LL | let _ = async move |x: bool| -> x { x }; | ||
| ^ not a type | ||
|
||
error[E0573]: expected type, found local variable `x` | ||
--> $DIR/local-type-mix.rs:13:11 | ||
| | ||
LL | fn foo(x: x) {} | ||
| ^ not a type | ||
|
||
error[E0573]: expected type, found local variable `x` | ||
--> $DIR/local-type-mix.rs:14:24 | ||
| | ||
LL | fn foo_ret(x: bool) -> x {} | ||
| ^ not a type | ||
|
||
error[E0573]: expected type, found local variable `x` | ||
--> $DIR/local-type-mix.rs:16:23 | ||
| | ||
LL | async fn async_foo(x: x) {} | ||
| ^ not a type | ||
|
||
error[E0573]: expected type, found local variable `x` | ||
--> $DIR/local-type-mix.rs:17:36 | ||
| | ||
LL | async fn async_foo_ret(x: bool) -> x {} | ||
| ^ not a type | ||
|
||
error: aborting due to 8 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0573`. |