]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/check-args-on-fn-err-2.rs
Rollup merge of #106788 - estebank:elaborate_pred_E0599, r=compiler-errors
[rust.git] / tests / ui / typeck / check-args-on-fn-err-2.rs
1 fn main() {
2     a((), 1i32 == 2u32);
3     //~^ ERROR cannot find function `a` in this scope
4     //~| ERROR mismatched types
5 }