diff --git a/tests/exhaustive.rs b/tests/exhaustive.rs index 84e463c..36c6307 100644 --- a/tests/exhaustive.rs +++ b/tests/exhaustive.rs @@ -151,6 +151,7 @@ pub enum Clang { ImplicitValueInitExpr(ImplicitValueInitExpr), IncompleteArrayType(IncompleteArrayType), IndirectFieldDecl(IndirectFieldDecl), + IndirectGotoStmt(IndirectGotoStmt), InitListExpr(InitListExpr), InjectedClassNameType(InjectedClassNameType), InlineCommandComment(InlineCommandComment), @@ -1881,6 +1882,13 @@ pub struct IndirectFieldDecl { pub name: Box, } +#[derive(Deserialize, Debug)] +#[serde(deny_unknown_fields)] +#[non_exhaustive] +pub struct IndirectGotoStmt { + pub range: SourceRange, +} + #[derive(Deserialize, Debug)] #[serde(deny_unknown_fields)] #[non_exhaustive]