Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
issues
/
issue-26948.rs
blob: 832c9641daa0d17973383cf033c584bd3cb627d7 [
file
]
fn
main
()
{
enum
Foo
{
A
{
x
:
u32
}
}
let
orig
=
Foo
::
A
{
x
:
5
};
Foo
::
A
{
x
:
6
,
..
orig
};
//~^ ERROR functional record update syntax requires a struct
}