]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/check-args-on-fn-err-2.rs
Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-accesses...
[rust.git] / src / test / 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 }