mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
181 B
Rust
14 lines
181 B
Rust
struct Foo {
|
|
x: isize,
|
|
}
|
|
|
|
fn main() {
|
|
match Foo { //~ ERROR struct literals are not allowed here
|
|
x: 3
|
|
} {
|
|
Foo {
|
|
x: x
|
|
} => {}
|
|
}
|
|
}
|