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

22 lines
901 B
Plaintext
Raw Normal View History

error[E0658]: The attribute `fixed_stack_segment` is currently unknown to the compiler and may have meaning added to it in the future
2019-06-08 15:55:09 -05:00
--> $DIR/obsolete-attr.rs:5:3
2018-08-08 07:28:26 -05:00
|
LL | #[fixed_stack_segment] fn f() {}
| ^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
2018-08-08 07:28:26 -05:00
error[E0658]: The attribute `ab_isize` is currently unknown to the compiler and may have meaning added to it in the future
2019-06-08 15:55:09 -05:00
--> $DIR/obsolete-attr.rs:3:3
2018-08-08 07:28:26 -05:00
|
LL | #[ab_isize="stdcall"] extern {}
| ^^^^^^^^
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29642
= help: add `#![feature(custom_attribute)]` to the crate attributes to enable
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0658`.