rust/tests/ui/target-feature/tied-features.stderr

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

19 lines
606 B
Plaintext
Raw Normal View History

2022-01-31 07:04:27 -06:00
error: the target features paca, pacg must all be either enabled or disabled together
2022-04-06 02:29:58 -05:00
--> $DIR/tied-features.rs:12:5
2022-01-31 07:04:27 -06:00
|
LL | #[target_feature(enable = "pacg")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add the missing features in a `target_feature` attribute
error: the target features paca, pacg must all be either enabled or disabled together
2022-04-06 02:29:58 -05:00
--> $DIR/tied-features.rs:24:1
2022-01-31 07:04:27 -06:00
|
LL | #[target_feature(enable = "paca")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add the missing features in a `target_feature` attribute
error: aborting due to 2 previous errors