mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
14 lines
187 B
Rust
14 lines
187 B
Rust
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
#[deny(warnings)]
|
|
|
|
enum Empty { }
|
|
trait Bar<T> {}
|
|
impl Bar<Empty> for () {}
|
|
|
|
fn boo() -> impl Bar<Empty> {}
|
|
|
|
fn main() {
|
|
boo();
|
|
}
|