]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/multiline-span-E0072.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / span / multiline-span-E0072.rs
1 // It should just use the entire body instead of pointing at the next two lines
2 struct //~ ERROR has infinite size
3 ListNode
4 {
5     head: u8,
6     tail: Option<ListNode>,
7 }
8
9 fn main() {
10 }