rustc/tests/ui/consts/const-try-feature-gate.rs
2023-08-02 10:33:26 +02: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() {}