rust/tests/ui/span/E0072.rs

8 lines
105 B
Rust

struct ListNode { //~ ERROR has infinite size
head: u8,
tail: Option<ListNode>,
}
fn main() {
}