Files
rust/tests/ui/coherence/auxiliary/parametrized-trait.rs

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

6 lines
98 B
Rust
Raw Normal View History

pub trait Trait0<T, U, V> {}
pub trait Trait1<T, U> {}
2024-09-22 15:42:55 -04:00
pub trait Trait2<T, U> {
type Assoc;
}