Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// gate-test-const_try
const fn t() -> Option<()> {
Some(())?;
//~^ ERROR `?` is not allowed
//~| ERROR `?` is not allowed
None
}
fn main() {}