35 lines
885 B
Plaintext
35 lines
885 B
Plaintext
error[E0556]: malformed feature, expected just one word
|
|
--> $DIR/gated-bad-feature.rs:3:5
|
|
|
|
|
LL | foo(bar),
|
|
| ^^^^^^^^
|
|
|
|
error[E0556]: malformed feature, expected just one word
|
|
--> $DIR/gated-bad-feature.rs:4:5
|
|
|
|
|
LL | foo = "baz"
|
|
| ^^^^^^^^^^^
|
|
|
|
error[E0557]: feature has been removed
|
|
--> $DIR/gated-bad-feature.rs:12:12
|
|
|
|
|
LL | #![feature(test_removed_feature)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: attribute must be of the form `#[feature(name1, name1, ...)]`
|
|
--> $DIR/gated-bad-feature.rs:9:1
|
|
|
|
|
LL | #![feature]
|
|
| ^^^^^^^^^^^
|
|
|
|
error: attribute must be of the form `#[feature(name1, name1, ...)]`
|
|
--> $DIR/gated-bad-feature.rs:10:1
|
|
|
|
|
LL | #![feature = "foo"]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
Some errors occurred: E0556, E0557.
|
|
For more information about an error, try `rustc --explain E0556`.
|