summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/check-args-on-fn-err-2.rs
blob: af57dbe33177d61e6cf28f83610cdb75e2cbacc1 (plain)
1
2
3
4
5
fn main() {
    a((), 1i32 == 2u32);
    //~^ ERROR cannot find function `a` in this scope
    //~| ERROR mismatched types
}