about summary refs log tree commit diff
path: root/src/test/ui/span/E0072.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-7/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-1/+1
2017-04-12Add a way to get shorter spans until `char` for pointing at defsEsteban Küber-0/+17
```rust error[E0072]: recursive type `X` has infinite size --> file.rs:10:1 | 10 | struct X { | ^^^^^^^^ recursive type has infinite size | = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `X` representable ``` vs ```rust error[E0072]: recursive type `X` has infinite size --> file.rs:10:1 | 10 | struct X { | _^ starting here... 11 | | x: X, 12 | | } | |_^ ...ending here: recursive type has infinite size | = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `X` representable ```