rust/src/test/ui/lint/lint-obsolete-attr.stderr

21 lines
448 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: unused attribute
2018-12-25 09:56:47 -06:00
--> $DIR/lint-obsolete-attr.rs:8:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #[ab_isize="stdcall"] extern {}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 09:56:47 -06:00
--> $DIR/lint-obsolete-attr.rs:4:9
2018-08-08 07:28:26 -05:00
|
LL | #![deny(unused_attributes)]
| ^^^^^^^^^^^^^^^^^
error: unused attribute
2018-12-25 09:56:47 -06:00
--> $DIR/lint-obsolete-attr.rs:10:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | #[fixed_stack_segment] fn f() {}
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors