Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
consts
/
const-try-feature-gate.rs
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
()
{}