rust/tests/ui/recursion/issue-38591-non-regular-dropck-recursion.rs
Esteban Küber dceb3fc9fa Tweak E0320 overflow error wording
Surrount type with backticks as we should in every error.
2024-11-05 21:54:45 +00:00

17 lines
386 B
Rust

// `S` is infinitely recursing so it's not possible to generate a finite
// drop impl (ignoring polymorphization).
//
// Dropck should therefore detect that this is the case and eagerly error.
struct S<T> {
t: T,
s: Box<S<fn(u: T)>>,
}
fn f(x: S<u32>) {} //~ ERROR overflow while adding drop-check rules for `S<u32>`
fn main() {
// Force instantiation.
f as fn(_);
}