]> git.lizzy.rs Git - rust.git/blob - tests/ui/return-nil.rs
Rollup merge of #107086 - clubby789:bootstrap-lock-pid-linux, r=albertlarsan68
[rust.git] / tests / ui / return-nil.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 fn f() { let x: () = (); return x; }
5
6 pub fn main() { let _x = f(); }