rust/tests/ui/issues/issue-34373.rs
2023-01-11 09:32:08 +00:00

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() {
}