about summary refs log tree commit diff
path: root/tests/ui/impl-trait/in-trait/encode.rs
blob: 84dc617cba06e8176645a6a104e90f130e82429e (plain)
1
2
3
4
5
6
//@ build-pass
//@ compile-flags: --crate-type=lib

trait Foo {
    fn bar() -> impl Sized;
}