rust/tests/ui/feature-gates/feature-gate-yeet_expr-in-cfg.rs
2023-01-11 09:32:08 +00:00

20 lines
328 B
Rust

// compile-flags: --edition 2021
pub fn demo() -> Option<i32> {
#[cfg(nope)]
{
do yeet //~ ERROR `do yeet` expression is experimental
}
Some(1)
}
#[cfg(nope)]
pub fn alternative() -> Result<(), String> {
do yeet "hello"; //~ ERROR `do yeet` expression is experimental
}
fn main() {
demo();
}