mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 19:23:50 +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();
|
|
}
|