Files
rust/tests/ui/infinite/auxiliary/alias.rs

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

6 lines
80 B
Rust
Raw Normal View History

2023-02-17 16:19:13 +00:00
pub struct W<T>(T);
pub type Wrapper<T> = W<T>;
pub trait Trait {
type T;
}