1 2 3 4 5 6 7 8 9 10 11 12 13 14
fn read(y: bool) { if y { println!("Y is true"); } } fn main() { read(t); let t: bool = true; return; }