rust/src/test/ui/target-feature-wrong.stderr

48 lines
1.4 KiB
Plaintext
Raw Normal View History

error: #[target_feature] attribute must be of the form #[target_feature(..)]
2018-07-31 04:01:27 -05:00
--> $DIR/target-feature-wrong.rs:26:1
|
2018-02-22 18:42:32 -06:00
LL | #[target_feature = "+sse2"]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: the feature named `foo` is not valid for this target
2018-07-31 04:01:27 -05:00
--> $DIR/target-feature-wrong.rs:28:18
|
2018-02-22 18:42:32 -06:00
LL | #[target_feature(enable = "foo")]
| ^^^^^^^^^^^^^^
error: #[target_feature(..)] only accepts sub-keys of `enable` currently
2018-07-31 04:01:27 -05:00
--> $DIR/target-feature-wrong.rs:30:18
|
2018-02-22 18:42:32 -06:00
LL | #[target_feature(bar)]
| ^^^
error: #[target_feature(..)] only accepts sub-keys of `enable` currently
2018-07-31 04:01:27 -05:00
--> $DIR/target-feature-wrong.rs:32:18
|
2018-02-22 18:42:32 -06:00
LL | #[target_feature(disable = "baz")]
| ^^^^^^^^^^^^^^^
error: #[target_feature(..)] can only be applied to `unsafe` function
2018-07-31 04:01:27 -05:00
--> $DIR/target-feature-wrong.rs:36:1
|
2018-02-22 18:42:32 -06:00
LL | #[target_feature(enable = "sse2")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: attribute should be applied to a function
2018-07-31 04:01:27 -05:00
--> $DIR/target-feature-wrong.rs:40:1
|
LL | #[target_feature(enable = "sse2")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
LL | //~^ ERROR: should be applied to a function
LL | mod another {}
| -------------- not a function
error: cannot use #[inline(always)] with #[target_feature]
2018-07-31 04:01:27 -05:00
--> $DIR/target-feature-wrong.rs:44:1
|
LL | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
error: aborting due to 7 previous errors