DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb12u3 / 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() {}