]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/issue-107775.stderr
Remove astconv usage in diagnostic
[rust.git] / tests / ui / typeck / issue-107775.stderr
1 error[E0308]: mismatched types
2   --> $DIR/issue-107775.rs:35:16
3    |
4 LL |         map.insert(1, Struct::do_something);
5    |                    -  -------------------- this is of type `fn(u8) -> Pin<Box<dyn Future<Output = ()> + Send>> {<Struct as Trait>::do_something::<'_>}`, which causes `map` to be inferred as `HashMap<{integer}, fn(u8) -> Pin<Box<dyn Future<Output = ()> + Send>> {<Struct as Trait>::do_something::<'_>}>`
6    |                    |
7    |                    this is of type `{integer}`, which causes `map` to be inferred as `HashMap<{integer}, fn(u8) -> Pin<Box<dyn Future<Output = ()> + Send>> {<Struct as Trait>::do_something::<'_>}>`
8 LL |         Self { map }
9    |                ^^^ expected `HashMap<u16, fn(u8) -> Pin<...>>`, found `HashMap<{integer}, ...>`
10    |
11    = note: expected struct `HashMap<u16, fn(_) -> Pin<Box<(dyn Future<Output = ()> + Send + 'static)>>>`
12               found struct `HashMap<{integer}, fn(_) -> Pin<Box<dyn Future<Output = ()> + Send>> {<Struct as Trait>::do_something::<'_>}>`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0308`.