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