rustc/tests/ui/consts/const-try-feature-gate.rs
2025-02-17 11:14:05 +01:00

11 lines
161 B
Rust

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