]> git.lizzy.rs Git - rust.git/blob - src/test/ui/arg-count-mismatch.rs
Rollup merge of #92959 - asquared31415:test-non-fn-help, r=estebank
[rust.git] / src / test / ui / arg-count-mismatch.rs
1 // error-pattern: arguments were supplied
2
3 fn f(x: isize) { }
4
5 fn main() { let i: (); i = f(); }