diff options
Diffstat (limited to 'clang/test/SemaCXX/typo-correction-pt2.cpp')
-rw-r--r-- | clang/test/SemaCXX/typo-correction-pt2.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/typo-correction-pt2.cpp b/clang/test/SemaCXX/typo-correction-pt2.cpp index 1ccd103ecff..9c7fb14ccfd 100644 --- a/clang/test/SemaCXX/typo-correction-pt2.cpp +++ b/clang/test/SemaCXX/typo-correction-pt2.cpp @@ -135,3 +135,12 @@ void test() { req.set_check(false); // expected-error-re {{use of undeclared identifier 'req'$}} } } + +namespace PR17394 { + class A { + protected: + long zzzzzzzzzz; + }; + class B : private A {}; + B zzzzzzzzzy<>; // expected-error {{expected ';' after top level declarator}}{} +} |