rustc/tests/ui/impl-trait/fallback_inference.rs
2023-08-02 10:33:26 +02:00

8 lines
137 B
Rust

use std::marker::PhantomData;
fn weird() -> PhantomData<impl Sized> {
PhantomData //~ ERROR type annotations needed
}
fn main() {}