Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
error-codes
/
E0005.rs
blob: f4730697e1843f226ec6a3998dd6b89725e9ef1a [
file
]
fn
main
()
{
let
x
=
Some
(
1
);
let
Some
(
y
)
=
x
;
//~ ERROR E0005
}