blob: ecfd3148569dff71cf246a59f38dbbc30a1dea6f [file] [log] [blame]
//@ known-bug: #117829
#![feature(auto_traits)]
trait B {}
auto trait Z<T>
where
T: Z<u16>,
<T as Z<u16>>::W: B,
{
type W;
}
fn main() {}