Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
try-block
/
try-block-in-edition2015.rs
blob: 423269df12d68529bf4300bf8049a3e8f8183419 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: --edition 2015
pub
fn
main
()
{
let
try_result
:
Option
<
_
>
=
try
{
//~^ ERROR expected struct, variant or union type, found macro `try`
let
x
=
5
;
//~ ERROR expected identifier, found keyword
x
};
assert_eq
!(
try_result
,
Some
(
5
));
}