xref: /llvm-project/clang/test/SemaCXX/pr31042.cpp (revision 968be05b8fdc1d23c055cc4963230a89efbc5967)
1 // RUN: %clang_cc1 -o - -emit-llvm -triple x86_64-unknown-linux-gnu -disable-free %s
2 // We need to use -emit-llvm in order to trigger the error, without it semantic analysis
3 // does not verify the used bit and there's no error.
4 
5 char a[1];
6 
f1(void)7 void f1(void) {
8   int i = 0;
9   int j = sizeof(typeof(*(char(*)[i])a));
10 }
11