mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 20:33:23 +00:00
7 lines
94 B
Rust
7 lines
94 B
Rust
//@ build-pass
|
|
//@ compile-flags: --crate-type=lib
|
|
|
|
trait Foo {
|
|
fn bar() -> impl Sized;
|
|
}
|