mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 01:17:41 +00:00
11 lines
406 B
Rust
11 lines
406 B
Rust
// Regression test for <https://github.com/rust-lang/rust/issues/100529>.
|
|
|
|
//@ has "$.index[*][?(@.name=='ParseError')]"
|
|
//@ has "$.index[*][?(@.name=='UnexpectedEndTag')]"
|
|
//@ is "$.index[*][?(@.name=='UnexpectedEndTag')].inner.variant.kind.tuple" [null]
|
|
//@ is "$.index[*][?(@.name=='UnexpectedEndTag')].inner.variant.discriminant" null
|
|
|
|
pub enum ParseError {
|
|
UnexpectedEndTag(#[doc(hidden)] u32),
|
|
}
|