mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
15 lines
205 B
Rust
15 lines
205 B
Rust
//@ check-pass
|
|
struct Node<C: Trait<Self>>(C::Assoc);
|
|
|
|
trait Trait<T> {
|
|
type Assoc;
|
|
}
|
|
|
|
impl<T> Trait<T> for Vec<()> {
|
|
type Assoc = Vec<T>;
|
|
}
|
|
|
|
fn main() {
|
|
let _ = Node::<Vec<()>>(Vec::new());
|
|
}
|