-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not record unresolved const vars in generator interior
- Loading branch information
1 parent
aff003b
commit 6210812
Showing
7 changed files
with
173 additions
and
43 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
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
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,14 @@ | ||
// incremental | ||
// edition:2021 | ||
|
||
fn main() { | ||
let _ = async { | ||
let s = std::array::from_fn(|_| ()).await; | ||
//~^ ERROR `[(); _]` is not a future | ||
//~| ERROR type inside `async` block must be known in this context | ||
//~| ERROR type inside `async` block must be known in this context | ||
//~| ERROR type inside `async` block must be known in this context | ||
//~| ERROR type inside `async` block must be known in this context | ||
//~| ERROR type inside `async` block must be known in this context | ||
}; | ||
} |
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,78 @@ | ||
error[E0277]: `[(); _]` is not a future | ||
--> $DIR/unresolved-ct-var.rs:6:44 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ---------------------------^^^^^^ | ||
| | | | ||
| | `[(); _]` is not a future | ||
| | help: remove the `.await` | ||
| this call returns `[(); _]` | ||
| | ||
= help: the trait `Future` is not implemented for `[(); _]` | ||
= note: [(); _] must be a future or must implement `IntoFuture` to be awaited | ||
= note: required for `[(); _]` to implement `IntoFuture` | ||
|
||
error[E0698]: type inside `async` block must be known in this context | ||
--> $DIR/unresolved-ct-var.rs:6:17 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn` | ||
| | ||
note: the type is part of the `async` block because of this `await` | ||
--> $DIR/unresolved-ct-var.rs:6:44 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^ | ||
|
||
error[E0698]: type inside `async` block must be known in this context | ||
--> $DIR/unresolved-ct-var.rs:6:17 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn` | ||
| | ||
note: the type is part of the `async` block because of this `await` | ||
--> $DIR/unresolved-ct-var.rs:6:44 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^ | ||
|
||
error[E0698]: type inside `async` block must be known in this context | ||
--> $DIR/unresolved-ct-var.rs:6:17 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn` | ||
| | ||
note: the type is part of the `async` block because of this `await` | ||
--> $DIR/unresolved-ct-var.rs:6:44 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^ | ||
|
||
error[E0698]: type inside `async` block must be known in this context | ||
--> $DIR/unresolved-ct-var.rs:6:17 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn` | ||
| | ||
note: the type is part of the `async` block because of this `await` | ||
--> $DIR/unresolved-ct-var.rs:6:44 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^ | ||
|
||
error[E0698]: type inside `async` block must be known in this context | ||
--> $DIR/unresolved-ct-var.rs:6:17 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^^^^^^^^^^^^^^ cannot infer the value of const parameter `N` declared on the function `from_fn` | ||
| | ||
note: the type is part of the `async` block because of this `await` | ||
--> $DIR/unresolved-ct-var.rs:6:44 | ||
| | ||
LL | let s = std::array::from_fn(|_| ()).await; | ||
| ^^^^^^ | ||
|
||
error: aborting due to 6 previous errors | ||
|
||
Some errors have detailed explanations: E0277, E0698. | ||
For more information about an error, try `rustc --explain E0277`. |