mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
25 lines
276 B
Rust
25 lines
276 B
Rust
//@ known-bug: #121613
|
|
fn main() {
|
|
let _ = <Foo as A>::Assoc { br: 2 };
|
|
|
|
let <E>::V(..) = E::V(|a, b| a.cmp(b));
|
|
}
|
|
|
|
struct StructStruct {
|
|
br: i8,
|
|
}
|
|
|
|
struct Foo;
|
|
|
|
trait A {
|
|
type Assoc;
|
|
}
|
|
|
|
impl A for Foo {
|
|
type Assoc = StructStruct;
|
|
}
|
|
|
|
enum E {
|
|
V(u8),
|
|
}
|