mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
17 lines
570 B
Rust
17 lines
570 B
Rust
pub enum Foo {
|
|
Variant {
|
|
#[doc(hidden)]
|
|
a: i32,
|
|
// @set b = "$.index[*][?(@.name=='b')].id"
|
|
b: i32,
|
|
#[doc(hidden)]
|
|
x: i32,
|
|
// @set y = "$.index[*][?(@.name=='y')].id"
|
|
y: i32,
|
|
},
|
|
// @is "$.index[*][?(@.name=='Variant')].inner.kind.struct.fields_stripped" true
|
|
// @is "$.index[*][?(@.name=='Variant')].inner.kind.struct.fields[0]" $b
|
|
// @is "$.index[*][?(@.name=='Variant')].inner.kind.struct.fields[1]" $y
|
|
// @count "$.index[*][?(@.name=='Variant')].inner.kind.struct.fields[*]" 2
|
|
}
|