]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/multiline-span-E0072.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[rust.git] / src / test / 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 }