rust/tests/ui/sized/coinductive-1-gat.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
203 B
Rust
Raw Normal View History

2022-11-10 21:29:20 +00:00
// check-pass
struct Node<C: Trait>(C::Assoc::<Self>);
trait Trait {
type Assoc<T>;
}
impl Trait for Vec<()> {
type Assoc<T> = Vec<T>;
}
fn main() {
let _ = Node::<Vec<()>>(Vec::new());
}