summaryrefslogtreecommitdiffstats
path: root/test/Index/recover-bad-code-rdar_7487294.c
blob: 97bb5158e4728c53e44b092fd31d8465e3d8e031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang-cc1 -fsyntax-only %s 2>&1 | FileCheck %s

// IMPORTANT: This test case intentionally DOES NOT use --disable-free.  It
// tests that we are properly reclaiming the ASTs and we do not have a double free.
// Previously we tried to free the size expression of the VLA twice.

int foo(int x) {
  int y[x * 3];
  help
};

// CHECK: 9:3: error: use of undeclared identifier 'help'
// CHECK:  help
// CHECK: 14:102: error: expected '}'
OpenPOWER on IntegriCloud