7 lines
120 B
Rust
7 lines
120 B
Rust
fn main() {
|
|
static foo: Fn() -> u32 = || -> u32 {
|
|
//~^ ERROR the size for values of type
|
|
0
|
|
};
|
|
}
|