mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
8 lines
183 B
Rust
8 lines
183 B
Rust
fn main() {
|
|
static foo: dyn Fn() -> u32 = || -> u32 {
|
|
//~^ ERROR the size for values of type
|
|
//~| ERROR cannot be shared between threads safely
|
|
0
|
|
};
|
|
}
|