mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
168 B
Rust
9 lines
168 B
Rust
use std::marker;
|
|
|
|
struct B<T>(marker::PhantomData<T>);
|
|
|
|
fn main() {
|
|
let foo = B(marker::PhantomData); //~ ERROR type annotations needed
|
|
let closure = || foo;
|
|
}
|