about summary refs log tree commit diff
path: root/src/test/ui/span/multiline-span-simple.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2018-02-01Add filter to detect local crates for rustc_on_unimplementedEsteban Küber-1/+1
2017-11-24Merge cfail and ui tests into ui testsOliver Schneider-1/+1
2016-11-23review commentsEsteban Küber-1/+1
2016-11-22Show multiline spans in full if short enoughEsteban Küber-0/+30
When dealing with multiline spans that span few lines, show the complete span instead of restricting to the first character of the first line. For example, instead of: ``` % ./rustc foo.rs error[E0277]: the trait bound `{integer}: std::ops::Add<()>` is not satisfied --> foo.rs:13:9 | 13 | foo(1 + bar(x, | ^ trait `{integer}: std::ops::Add<()>` not satisfied | ``` show ``` % ./rustc foo.rs error[E0277]: the trait bound `{integer}: std::ops::Add<()>` is not satisfied --> foo.rs:13:9 | 13 | foo(1 + bar(x, | ________^ starting here... 14 | | y), | |_____________^ ...ending here: trait `{integer}: std::ops::Add<()>` not satisfied | ```