2023-03-17 03:14:27 +00:00
|
|
|
//@ edition: 2021
|
2023-09-30 19:29:41 +00:00
|
|
|
//@ run-rustfix
|
|
|
|
|
|
|
|
#![allow(unused)]
|
2023-03-17 03:14:27 +00:00
|
|
|
|
|
|
|
// Make sure we don't ICE when suggesting a return type
|
|
|
|
// for an async fn that has late-bound vars...
|
|
|
|
|
|
|
|
async fn ice(_: &i32) {
|
|
|
|
true
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|