rust/tests/ui/impl-trait/in-trait/encode.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
94 B
Rust
Raw Normal View History

//@ build-pass
//@ compile-flags: --crate-type=lib
trait Foo {
fn bar() -> impl Sized;
}