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

48 lines
1.4 KiB
Plaintext
Raw Normal View History

error: attribute must be of the form `#[target_feature(enable = "name")]`
2018-12-25 09:56:47 -06:00
--> $DIR/target-feature-wrong.rs:16: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-12-25 09:56:47 -06:00
--> $DIR/target-feature-wrong.rs:18: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-12-25 09:56:47 -06:00
--> $DIR/target-feature-wrong.rs:20:18
|
2018-02-22 18:42:32 -06:00
LL | #[target_feature(bar)]
| ^^^
error: #[target_feature(..)] only accepts sub-keys of `enable` currently
2018-12-25 09:56:47 -06:00
--> $DIR/target-feature-wrong.rs:22: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-12-25 09:56:47 -06:00
--> $DIR/target-feature-wrong.rs:26:1
|
2018-02-22 18:42:32 -06:00
LL | #[target_feature(enable = "sse2")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: attribute should be applied to a function
2018-12-25 09:56:47 -06:00
--> $DIR/target-feature-wrong.rs:30: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-12-25 09:56:47 -06:00
--> $DIR/target-feature-wrong.rs:34:1
|
LL | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
error: aborting due to 7 previous errors