mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
237 B
Rust
19 lines
237 B
Rust
// run-pass
|
|
#![allow(non_camel_case_types)]
|
|
#![allow(unused_variables)]
|
|
|
|
trait Foo {
|
|
type bar;
|
|
fn bar();
|
|
}
|
|
|
|
impl Foo for () {
|
|
type bar = ();
|
|
fn bar() {}
|
|
}
|
|
|
|
fn main() {
|
|
let x: <() as Foo>::bar = ();
|
|
<()>::bar();
|
|
}
|