mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
252 B
Rust
17 lines
252 B
Rust
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 associated function
|
|
_ => ()
|
|
})
|
|
}
|
|
|
|
fn main() {}
|