mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 05:25:38 +00:00
19 lines
678 B
Plaintext
19 lines
678 B
Plaintext
error: `#[unstable_feature_bound]` attribute cannot be used on required trait methods
|
|
--> $DIR/unstable_inherent_method.rs:11:5
|
|
|
|
|
LL | #[unstable_feature_bound(foo)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: `#[unstable_feature_bound]` can be applied to functions, trait impl blocks, traits
|
|
|
|
error: `#[unstable_feature_bound]` attribute cannot be used on trait methods in impl blocks
|
|
--> $DIR/unstable_inherent_method.rs:18:5
|
|
|
|
|
LL | #[unstable_feature_bound(foo)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: `#[unstable_feature_bound]` can be applied to functions, trait impl blocks, traits
|
|
|
|
error: aborting due to 2 previous errors
|
|
|