mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
18 lines
188 B
Rust
18 lines
188 B
Rust
![]() |
//@ check-pass
|
||
|
|
||
|
#![feature(trait_alias)]
|
||
|
|
||
|
struct Bar;
|
||
|
trait Foo {}
|
||
|
impl Foo for Bar {}
|
||
|
|
||
|
trait Baz = Foo where Bar: Foo;
|
||
|
|
||
|
fn new() -> impl Baz {
|
||
|
Bar
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let _ = new();
|
||
|
}
|