9b0ae75ecc
See [RFC](https://github.com/maurer/rust-rfcs/blob/patchable-function-entry/text/0000-patchable-function-entry.md) (yet to be numbered) TODO before submission: * Needs an RFC * Improve error reporting for malformed attributes
12 lines
554 B
Text
12 lines
554 B
Text
error[E0658]: the `#[patchable_function_entry]` attribute is an experimental feature
|
|
--> $DIR/feature-gate-patchable-function-entry.rs:1:1
|
|
|
|
|
LL | #[patchable_function_entry(entry(1), prefix(1))]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: see issue #9999 <https://github.com/rust-lang/rust/issues/9999> for more information
|
|
= help: add `#![feature(patchable_function_entry)]` to the crate attributes to enable
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|