blob: 8868689ff81f32de7668276ee95b17178492f6e1 [file] [log] [blame] [edit]
//! regression test for issue <https://github.com/rust-lang/rust/issues/45965>
fn main() {
let a = |r: f64| if r != 0.0(r != 0.0) { 1.0 } else { 0.0 };
//~^ ERROR expected function, found `{float}`
}