xref: /aosp_15_r20/external/clang/test/Index/recover-bad-code-rdar_7487294.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // RUN: not %clang-cc1 -fsyntax-only %s 2>&1 | FileCheck %s
2*67e74705SXin Li 
3*67e74705SXin Li // IMPORTANT: This test case intentionally DOES NOT use --disable-free.  It
4*67e74705SXin Li // tests that we are properly reclaiming the ASTs and we do not have a double free.
5*67e74705SXin Li // Previously we tried to free the size expression of the VLA twice.
6*67e74705SXin Li 
foo(int x)7*67e74705SXin Li int foo(int x) {
8*67e74705SXin Li   int y[x * 3];
9*67e74705SXin Li   help
10*67e74705SXin Li };
11*67e74705SXin Li 
12*67e74705SXin Li // CHECK: 9:3: error: use of undeclared identifier 'help'
13*67e74705SXin Li // CHECK:  help
14