7 lines
79 B
Rust
7 lines
79 B
Rust
type r = {
|
|
field: fn@()
|
|
};
|
|
|
|
fn main() {
|
|
let i: r = {field: fn() { }};
|
|
} |