]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias/issue-62263-self-in-atb.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / type-alias / issue-62263-self-in-atb.rs
1 pub trait Trait {
2     type A;
3 }
4
5 pub type Alias = dyn Trait<A = Self::A>;
6 //~^ ERROR failed to resolve: use of undeclared type or module `Self` [E0433]
7
8 fn main() {}