rust/tests/ui/consts/const-try-feature-gate.rs

11 lines
161 B
Rust
Raw Permalink Normal View History

// gate-test-const_try
const fn t() -> Option<()> {
Some(())?;
2024-11-22 02:31:42 +00:00
//~^ ERROR `?` is not allowed
//~| ERROR `?` is not allowed
None
}
fn main() {}