rust/src/test/ui/recursion/issue-38591-non-regular-dropck-recursion.rs

18 lines
382 B
Rust
Raw Normal View History

// Dropck shouldn't hit a recursion limit from checking `S<u32>` since it has
// no free regions or type parameters.
// Codegen however, has to error for the infinitely many `real_drop_in_place`
// functions it has been asked to create.
// build-fail
struct S<T> {
t: T,
s: Box<S<fn(u: T)>>,
}
fn f(x: S<u32>) {}
fn main() {
// Force instantiation.
f as fn(_);
}