Sign in
fuchsia
/
third_party
/
rust
/
2fcea9fb68c8e04f10e5cb15bbfb486de9800afa
/
.
/
tests
/
ui
/
binding
/
match-naked-record-expr.rs
blob: 57697a73ca4b2e53b4fe005e480918a70d6dbb48 [
file
] [
log
] [
blame
]
//@ run-pass
struct
X
{
x
:
isize
}
pub
fn
main
()
{
let
_x
=
match
0
{
_
=>
X
{
x
:
0
}.
x
};
}