about summary refs log tree commit diff
path: root/src/test/ui/on-unimplemented/multiple-impls.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-45/+0
2022-08-27Revert "Remove deferred sized checks"Michael Goulet-0/+6
This reverts commit 33212bf7f527798a8cfa2bbb38781742f4ca718a.
2022-08-16Remove deferred sized checksMichael Goulet-3/+0
2019-11-06gate rustc_on_unimplemented under rustc_attrsMazdak Farrokhzad-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-07remove `#[rustc_error]` from ui/ tests that remain compile-fail tests.Felix S. Klock II-2/+2
2017-12-14Remove NOTE/HELP annotations from UI testsVadim Petrochenkov-9/+0
2017-07-05`rustc_on_unimplemented` supports referring to traitEsteban Küber-0/+61
Add support to `rustc_on_unimplemented` to reference the full path of the annotated trait. For the following code: ```rust pub mod Bar { #[rustc_on_unimplemented = "test error `{Self}` with `{Bar}` `{Baz}` `{Quux}` in `{Foo}`"] pub trait Foo<Bar, Baz, Quux> {} } ``` the error message will be: ``` test error `std::string::String` with `u8` `_` `u32` in `Bar::Foo` ```