summaryrefslogtreecommitdiffstats
path: root/src/test/ui/return-nil.rs
blob: fd5203ff0ed600f5f4bf5fe0eab8823f664f11b0 (plain)
1
2
3
4
5
6
// run-pass
// pretty-expanded FIXME #23616

fn f() { let x: () = (); return x; }

pub fn main() { let _x = f(); }