Files
rust/tests/ui/span/multiline-span-E0072.rs

11 lines
185 B
Rust
Raw Normal View History

// It should just use the entire body instead of pointing at the next two lines
2017-11-20 13:13:27 +01:00
struct //~ ERROR has infinite size
ListNode
{
2016-05-20 15:18:30 +02:00
head: u8,
tail: Option<ListNode>,
}
fn main() {
}