8 lines
86 B
Rust
8 lines
86 B
Rust
type r = {
|
|
field: fn@()
|
|
};
|
|
|
|
fn main() {
|
|
fn f() {}
|
|
let i: r = {field: f};
|
|
} |