rust/tests/ui/span/E0072.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
105 B
Rust
Raw Normal View History

2017-11-20 06:13:27 -06:00
struct ListNode { //~ ERROR has infinite size
2016-05-20 08:18:30 -05:00
head: u8,
tail: Option<ListNode>,
}
fn main() {
}