rust/src/test/ui/span/multiline-span-E0072.rs
2018-12-25 21:08:33 -07:00

11 lines
185 B
Rust

// It should just use the entire body instead of pointing at the next two lines
struct //~ ERROR has infinite size
ListNode
{
head: u8,
tail: Option<ListNode>,
}
fn main() {
}