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

7 lines
142 B
Rust

fn foo() -> impl ?Sized {
//~^ ERROR the size for values of type `impl ?Sized` cannot be known at compilation time
()
}
fn main() {}