1 2 3 4 5 6 7 8 9 10 11
fn empty() {} fn unit_var() { let x = (); x } fn main() { empty(); unit_var(); }