]> git.lizzy.rs Git - rust.git/blob - src/test/ui/call-fn-never-arg-wrong-type.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / call-fn-never-arg-wrong-type.stderr
1 error[E0308]: mismatched types
2   --> $DIR/call-fn-never-arg-wrong-type.rs:10:9
3    |
4 LL |     foo("wow"); //~ ERROR mismatched types
5    |         ^^^^^ expected !, found reference
6    |
7    = note: expected type `!`
8               found type `&'static str`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0308`.