rust/tests/ui/feature-gates/feature-gate-cfg-contract-c...

6 lines
148 B
Rust

#![crate_type = "lib"]
pub fn contract_checks_are_enabled() -> bool {
cfg!(contract_checks) //~ ERROR `cfg(contract_checks)` is experimental
}