blob: 044033c5e8ab1e757be8dc9002547e3b199eb4ca [file] [log] [blame]
trait A<T> {}
trait B {
type Type;
}
impl<T> B for T //~ ERROR overflow evaluating the requirement
where
T: A<Self::Type>,
{
type Type = bool;
}
fn main() {}