rust/tests/ui/consts/const-try-feature-gate.rs
2025-07-21 12:49:45 +03:00

13 lines
282 B
Rust

// gate-test-const_try
const fn t() -> Option<()> {
Some(())?;
//~^ ERROR `?` is not allowed
//~| ERROR `?` is not allowed
//~| ERROR `Try` is not yet stable as a const trait
//~| ERROR `FromResidual` is not yet stable as a const trait
None
}
fn main() {}