blob: dd8fead94891660380967ca88da9eab108cae802 [file]
//! Regression test for <https://github.com/rust-lang/rust/issues/18183>.
pub struct Foo<Bar=Bar>(Bar); //~ ERROR E0128
pub struct Baz(Foo);
fn main() {}