blob: e060672b692395ffa74e37c9d52b2826e99f4452 [file] [log] [blame]
Ted Kremenek29b6f382009-12-23 20:58:27 +00001// RUN: %clang-cc1 -fsyntax-only %s 2>&1 | FileCheck %s
Ted Kremeneke7809d42009-12-23 08:56:00 +00002
Ted Kremenek29b6f382009-12-23 20:58:27 +00003// IMPORTANT: This test case intentionally DOES NOT use --disable-free. It
4// tests that we are properly reclaiming the ASTs and we do not have a double free.
5// Previously we tried to free the size expression of the VLA twice.
Ted Kremeneke7809d42009-12-23 08:56:00 +00006
7int foo(int x) {
8 int y[x * 3];
9 help
10};
11
Ted Kremenek29b6f382009-12-23 20:58:27 +000012// CHECK: 9:3: error: use of undeclared identifier 'help'
Ted Kremeneke7809d42009-12-23 08:56:00 +000013// CHECK: help