rust/tests/ui/consts/const-try-feature-gate.rs
2023-01-11 09:32:08 +00:00

10 lines
144 B
Rust

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