2025-01-30 17:06:09 -08:00
|
|
|
error[E0658]: use of unstable library feature `contracts`
|
|
|
|
|
--> $DIR/feature-gate-contracts.rs:3:3
|
|
|
|
|
|
|
|
|
|
|
LL | #[core::contracts::requires(x > 0)]
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
= note: see issue #128044 <https://github.com/rust-lang/rust/issues/128044> for more information
|
|
|
|
|
= help: add `#![feature(contracts)]` to the crate attributes to enable
|
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
|
|
|
|
|
|
error[E0658]: use of unstable library feature `contracts`
|
2025-02-10 19:47:00 +00:00
|
|
|
--> $DIR/feature-gate-contracts.rs:7:3
|
2025-01-30 17:06:09 -08:00
|
|
|
|
|
|
|
|
|
LL | #[core::contracts::ensures(|ret| *ret > 0)]
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
= note: see issue #128044 <https://github.com/rust-lang/rust/issues/128044> for more information
|
|
|
|
|
= help: add `#![feature(contracts)]` to the crate attributes to enable
|
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
|
|
2025-02-10 19:47:00 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2025-01-30 17:06:09 -08:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|