mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
18 lines
329 B
Rust
18 lines
329 B
Rust
//@ check-pass
|
|
//@ revisions: current next
|
|
//@ ignore-compare-mode-next-solver (explicit revisions)
|
|
//@[next] compile-flags: -Znext-solver
|
|
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());
|
|
}
|