14 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2 3typeof_unqual(int) u = 12; // expected-error {{expected function body after function declarator}}4__typeof_unqual(int) _u = 12;5__typeof_unqual__(int) __u = 12;6 7namespace GH97646 {8 template<bool B>9 void f() {10 __typeof__(B) x = false;11 !x;12 }13}14