about summary refs log tree commit diff
path: root/src/test/ui/tool_lints.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-19/+0
2021-06-06Don't pass -Z unstable-options by default for UI testsJoshua Nelson-9/+1
- Pass it explicitly where appropriate - Update stderr files and warnings; it turns that unstable-options has far-reaching effects on diagnostics.
2021-03-16Allow registering tool lints with `register_tool`Joshua Nelson-3/+9
Previously, there was no way to add a custom tool prefix, even if the tool itself had registered a lint: ``` #![feature(register_tool)] #![register_tool(xyz)] #![warn(xyz::my_lint)] ``` ``` $ rustc unknown-lint.rs --crate-type lib error[E0710]: an unknown tool name found in scoped lint: `xyz::my_lint` --> unknown-lint.rs:3:9 | 3 | #![warn(xyz::my_lint)] | ^^^ ``` This allows opting-in to lints from other tools using `register_tool`.
2020-03-25update tool_lintsbishtpawan-1/+1
2020-03-24Update tools_lintsbishtpawan-0/+1
2020-01-09Update testsVadim Petrochenkov-1/+13
2019-04-18hide `--explain` hint if error has no extended infoAndy Russell-1/+0
2018-12-25Remove licensesMark Rousskov-1/+1
2018-07-04Improving span of unknown lint tool error messageflip1995-0/+9