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 12:13:27 +00:00
struct ListNode { //~ ERROR has infinite size
2016-05-20 13:18:30 +00:00
head: u8,
tail: Option<ListNode>,
}
fn main() {
}