blob: b83252012b8f8bfd1572e0e8f5023e0d523d45ba [file] [log] [blame]
struct A {}
impl A {
fn new() {}
}
fn hof<F>(_: F) where F: FnMut(()) {}
fn ice() {
hof(|c| match c {
A::new() => (), //~ ERROR expected tuple struct or tuple variant, found method
_ => ()
})
}
fn main() {}