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