blob: 0839c23a0b99bb7b66b03e5d4526c3489cca08ec [file] [log] [blame]
// gate-test-const_try
const fn t() -> Option<()> {
Some(())?;
//~^ error: `?` is not allowed in a `const fn`
None
}
fn main() {}