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