diff --git a/clang-tools-extra/pseudo/lib/cxx/cxx.bnf b/clang-tools-extra/pseudo/lib/cxx/cxx.bnf --- a/clang-tools-extra/pseudo/lib/cxx/cxx.bnf +++ b/clang-tools-extra/pseudo/lib/cxx/cxx.bnf @@ -557,7 +557,8 @@ class-key := UNION member-specification := member-declaration member-specification_opt member-specification := access-specifier : member-specification_opt -member-declaration := decl-specifier-seq_opt member-declarator-list_opt ; +member-declaration := decl-specifier-seq member-declarator-list_opt ; +member-declaration := member-declarator-list ; member-declaration := function-definition member-declaration := using-declaration member-declaration := using-enum-declaration diff --git a/clang-tools-extra/pseudo/test/cxx/empty-member-declaration.cpp b/clang-tools-extra/pseudo/test/cxx/empty-member-declaration.cpp new file mode 100644 --- /dev/null +++ b/clang-tools-extra/pseudo/test/cxx/empty-member-declaration.cpp @@ -0,0 +1,7 @@ +// RUN: clang-pseudo -grammar=cxx -source=%s --print-forest --forest-abbrev=false | FileCheck %s +class A { + ; +// CHECK-NOT: member-declaration := ; +// CHECK: member-declaration := empty-declaration +// CHECK-NOT: member-declaration := ; +};