Files
rust/tests/ui/diagnostic_namespace/suggest_typos.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.3 KiB
Plaintext
Raw Normal View History

error: unknown diagnostic attribute
--> $DIR/suggest_typos.rs:4:15
|
LL | #[diagnostic::onunimplemented]
| ^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> $DIR/suggest_typos.rs:2:9
|
LL | #![deny(unknown_or_malformed_diagnostic_attributes)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
help: an attribute with a similar name exists
|
2025-02-20 23:05:38 +00:00
LL | #[diagnostic::on_unimplemented]
| +
error: unknown diagnostic attribute
--> $DIR/suggest_typos.rs:9:15
|
LL | #[diagnostic::un_onimplemented]
| ^^^^^^^^^^^^^^^^
|
help: an attribute with a similar name exists
|
LL - #[diagnostic::un_onimplemented]
LL + #[diagnostic::on_unimplemented]
|
error: unknown diagnostic attribute
--> $DIR/suggest_typos.rs:14:15
|
LL | #[diagnostic::on_implemented]
| ^^^^^^^^^^^^^^
|
help: an attribute with a similar name exists
|
2025-02-20 23:05:38 +00:00
LL | #[diagnostic::on_unimplemented]
| ++
2025-03-24 01:02:07 +01:00
error: unknown diagnostic attribute
--> $DIR/suggest_typos.rs:19:15
|
LL | #[diagnostic::dont_recommend]
| ^^^^^^^^^^^^^^
|
help: an attribute with a similar name exists
|
LL - #[diagnostic::dont_recommend]
LL + #[diagnostic::do_not_recommend]
|
error: aborting due to 4 previous errors