mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 04:57:35 +00:00
11 lines
126 B
Rust
11 lines
126 B
Rust
![]() |
//@ check-pass
|
||
|
|
||
|
#![feature(impl_trait_in_bindings)]
|
||
|
|
||
|
trait Foo {}
|
||
|
impl Foo for () {}
|
||
|
|
||
|
fn main() {
|
||
|
let x: impl Foo = ();
|
||
|
}
|