We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f9e79b commit c89b969Copy full SHA for c89b969
clang/test/SemaCXX/typeof_unqual.cpp
@@ -1,5 +1,5 @@
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
-// expected-no-diagnostics
3
4
-__typeof_unqual__(int) u = 12;
+typeof_unqual(int) u = 12; // expected-error {{expected function body after function declarator}}
5
__typeof_unqual(int) _u = 12;
+__typeof_unqual__(int) __u = 12;
0 commit comments