blob: 91522d8912f79713fa52281366d66a7f12b4e4ab [file] [log] [blame]
pub trait Trait {
type A;
}
pub type Alias = dyn Trait<A = Self::A>;
//~^ ERROR failed to resolve: `Self`
fn main() {}