8 lines
87 B
Rust
8 lines
87 B
Rust
// xfail-test
|
|
type t = {
|
|
f: fn~()
|
|
};
|
|
|
|
fn main() {
|
|
let _t: t = { f: {||()} };
|
|
}
|