blob: f69c8122d1d7a49c1adeed1c918614ca5d0c3234 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | //@ aux-build:block-on.rs
//@ edition:2021
extern crate block_on;
fn main() {
    block_on::block_on(async {
        let c = async |x| {};
        c(1i32).await;
        c(2usize).await;
        //~^ ERROR mismatched types
    });
}
 |