xref: /llvm-project/clang/test/C/C23/n2930.c (revision 50c81128de8616117118564eff22cf508cba7848)
1 // RUN: %clang_cc1 -verify -std=c2x %s
2 
3 /* WG14 N2930: yes
4  * Consider renaming remove_quals
5  */
6 
7 int remove_quals;
8 int typeof_unqual; // expected-error {{expected '(' after 'typeof_unqual'}}
9 typeof_unqual(remove_quals) val;
10