about summary refs log tree commit diff
path: root/tests/ui/diagnostic_namespace/deny_malformed_attribute.stderr
blob: 5c0a437aad8936707b2eca3abb3100ef3f2014b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: unknown diagnostic attribute
  --> $DIR/deny_malformed_attribute.rs:5:15
   |
LL | #[diagnostic::unknown_attribute]
   |               ^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/deny_malformed_attribute.rs:3:9
   |
LL | #![deny(unknown_or_malformed_diagnostic_attributes)]
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: `#[deny(unknown_diagnostic_attributes)]` implied by `#[deny(unknown_or_malformed_diagnostic_attributes)]`

error: aborting due to 1 previous error