Sign in
rust
/
rust
/
c021d2ddd49f8ff07d27fa772d88a3eb229e63ec
/
.
/
tests
/
ui
/
typeck
/
issue-89044-wrapped-expr-method.fixed
blob: 584bbe8c946c7f383fbd208b33df33637fef5b8b [
file
]
//@ run-rustfix
fn main
()
{
let
a
=
Some
(
42
);
println
!(
"The value is {}."
,
(
a
.
unwrap
())
//~ERROR [E0615]
);
}