rustc/tests/ui/impl-trait/fallback_inference.rs
2023-07-27 22:48:29 +08:00

8 lines
137 B
Rust

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