mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
10 lines
173 B
Rust
10 lines
173 B
Rust
struct Obj<F> where F: FnMut() -> u32 {
|
|
closure: F,
|
|
}
|
|
|
|
fn main() {
|
|
let o = Obj { closure: || 42 };
|
|
o.closure();
|
|
//~^ ERROR no method named `closure` found
|
|
}
|