rust/tests/ui/diagnostic_namespace
Georg Semmler 1a1cd6e6db
Restrict what symbols can be used in `#[diagnostic::on_unimplemented]` format strings
This commit restricts what symbols can be used in a format string for
any option of the `diagnostic::on_unimplemented` attribute. We
previously allowed all the ad-hoc options supported by the internal
`#[rustc_on_unimplemented]` attribute. For the stable attribute we only
want to support generic parameter names and `{Self}` as parameters.  For
any other parameter an warning is emitted and the parameter is replaced
by the literal parameter string, so for example `{integer}` turns into
`{integer}`. This follows the general design of attributes in the
`#[diagnostic]` attribute namespace, that any syntax "error" is treated
as warning and subsequently ignored.
2023-12-04 10:00:33 +01:00
..
auxiliary Introduce the `#[diagnostic]` attribute namespace 2023-07-28 13:28:02 +02:00
on_unimplemented Restrict what symbols can be used in `#[diagnostic::on_unimplemented]` format strings 2023-12-04 10:00:33 +01:00
can_use_the_diagnostic_name_in_other_places.rs Introduce the `#[diagnostic]` attribute namespace 2023-07-28 13:28:02 +02:00
existing_proc_macros.rs Introduce the `#[diagnostic]` attribute namespace 2023-07-28 13:28:02 +02:00
feature-gate-diagnostic_namespace.rs `#[diagnostic::on_unimplemented]` without filters 2023-09-12 20:03:18 +02:00
feature-gate-diagnostic_namespace.stderr `#[diagnostic::on_unimplemented]` without filters 2023-09-12 20:03:18 +02:00
non_existing_attributes_accepted.rs Introduce the `#[diagnostic]` attribute namespace 2023-07-28 13:28:02 +02:00
non_existing_attributes_accepted.stderr `#[diagnostic::on_unimplemented]` without filters 2023-09-12 20:03:18 +02:00
requires_path.rs Introduce the `#[diagnostic]` attribute namespace 2023-07-28 13:28:02 +02:00
requires_path.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00