rust/tests/ui/issues/issue-34373.rs

12 lines
169 B
Rust

#![allow(warnings)]
trait Trait<T> {
fn foo(_: T) {}
}
pub struct Foo<T = Box<Trait<DefaultFoo>>>; //~ ERROR cycle detected
type DefaultFoo = Foo;
fn main() {
}