rust/tests/ui/impl-trait/in-trait/encode.rs
2023-10-13 21:01:36 +00:00

9 lines
124 B
Rust

// build-pass
// compile-flags: --crate-type=lib
#![allow(incomplete_features)]
trait Foo {
fn bar() -> impl Sized;
}