Sign in
rust
/
rust
/
2d3dfece0346f805c6d4fa86c2e8a20ca3eef6ca
/
.
/
tests
/
ui
/
parser
/
attribute
/
attr-pat-struct-rest.rs
blob: 8f0e4cd827e09428663e1512c643d2816c32661b [
file
]
// #81282: Attributes are not allowed on struct field rest patterns (the ..).
struct
S
{}
fn
main
()
{
let
S
{
#[
cfg
(
false
)]
..
}
=
S
{};
//~^ ERROR expected identifier, found `..`
}