Files
rust/src/test/ui/infinite/infinite-struct.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
185 B
Rust
Raw Normal View History

struct Take(Take);
//~^ ERROR has infinite size
// check that we don't hang trying to find the tail of a recursive struct (#79437)
fn foo() -> Take {
Take(loop {})
}
fn main() {}