fn read(y: bool) { if y { println!("Y is true"); } } fn main() { read(t); let t: bool = true; return; }