Sign in
rust
/
rust
/
526a91cbcc4601b92b0587405015e07b9c0d79f6
/
.
/
tests
/
ui
/
binding
/
match-naked-record.rs
blob: ce9489a00f2c68b0041cf33182728c3560b0bc5e [
file
] [
log
] [
blame
]
//@ run-pass
#![
allow
(
dead_code
)]
struct
X
{
x
:
isize
}
pub
fn
main
()
{
let
_x
=
match
0
{
_
=>
X
{
x
:
0
}
};
}