2022-08-15 14:41:23 +02:00
|
|
|
// Regression test for <https://github.com/rust-lang/rust/issues/100529>.
|
|
|
|
|
2025-03-20 23:01:32 +00:00
|
|
|
//@ 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
|
2022-08-15 14:41:23 +02:00
|
|
|
|
|
|
|
pub enum ParseError {
|
|
|
|
UnexpectedEndTag(#[doc(hidden)] u32),
|
|
|
|
}
|