]> git.lizzy.rs Git - rust.git/blob - src/test/ui/arg-type-mismatch.rs
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / arg-type-mismatch.rs
1 // error-pattern: mismatched types
2
3 fn f(x: isize) { }
4
5 fn main() { let i: (); i = f(()); }