DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / structs-enums / struct-rec / issue-84611.rs
1234567891011
struct Foo<T> { //~^ ERROR recursive type `Foo` has infinite size x: Foo<[T; 1]>, y: T, } struct Bar { x: Foo<Bar>, } fn main() {}