Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-try-feature-gate.rs
blob: 1cc045bf61249b84afbf8284087c6f3c32194c2a [
file
] [
log
] [
blame
] [
edit
]
// gate-test-const_try
const
fn
t
()
->
Option
<()>
{
Some
(())?;
//~^ error: `?` is not allowed in a `const fn`
//~| ERROR: cannot convert
//~| ERROR: cannot determine
None
}
fn
main
()
{}