rust/src/test/ui/gated-bad-feature.stderr

35 lines
986 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0556]: malformed feature, expected just one word
2018-12-25 09:56:47 -06:00
--> $DIR/gated-bad-feature.rs:3:5
2018-08-08 07:28:26 -05:00
|
LL | foo(bar),
| ^^^^^^^^
error[E0556]: malformed feature, expected just one word
2018-12-25 09:56:47 -06:00
--> $DIR/gated-bad-feature.rs:4:5
2018-08-08 07:28:26 -05:00
|
LL | foo = "baz"
| ^^^^^^^^^^^
error[E0555]: malformed feature attribute, expected #![feature(...)]
2018-12-25 09:56:47 -06:00
--> $DIR/gated-bad-feature.rs:9:1
2018-08-08 07:28:26 -05:00
|
LL | #![feature] //~ ERROR: malformed feature
| ^^^^^^^^^^^
error[E0555]: malformed feature attribute, expected #![feature(...)]
2018-12-25 09:56:47 -06:00
--> $DIR/gated-bad-feature.rs:10:1
2018-08-08 07:28:26 -05:00
|
LL | #![feature = "foo"] //~ ERROR: malformed feature
| ^^^^^^^^^^^^^^^^^^^
error[E0557]: feature has been removed
2018-12-25 09:56:47 -06:00
--> $DIR/gated-bad-feature.rs:12:12
2018-08-08 07:28:26 -05:00
|
LL | #![feature(test_removed_feature)] //~ ERROR: feature has been removed
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to 5 previous errors
2018-08-08 07:28:26 -05:00
Some errors occurred: E0555, E0556, E0557.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0555`.