]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/check-args-on-fn-err-2.rs
Auto merge of #107269 - bjorn3:sync_cg_clif-2023-01-24, r=bjorn3
[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 }