]> git.proxmox.com Git - rustc.git/blob - src/test/ui/liveness/liveness-missing-ret2.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / liveness / liveness-missing-ret2.rs
1 fn f() -> isize { //~ ERROR mismatched types
2 // Make sure typestate doesn't interpret this match expression as
3 // the function result
4 match true { true => { } _ => {} };
5 }
6
7 fn main() { }