2022-01-05 06:02:16 -06:00
|
|
|
error: malformed `rustc_lint_query_instability` attribute input
|
|
|
|
--> $DIR/query_stability_incorrect.rs:10:5
|
|
|
|
|
|
|
|
|
LL | #[rustc_lint_query_instability(a)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: must be of the form: `#[rustc_lint_query_instability]`
|
|
|
|
|
2022-07-19 04:00:16 -05:00
|
|
|
error: attribute should be applied to a function definition
|
2022-01-05 06:02:16 -06:00
|
|
|
--> $DIR/query_stability_incorrect.rs:5:1
|
|
|
|
|
|
|
|
|
LL | #[rustc_lint_query_instability]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL |
|
|
|
|
LL | struct Foo;
|
2022-07-19 04:00:16 -05:00
|
|
|
| ----------- not a function definition
|
2022-01-05 06:02:16 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|