blob: 4567888a37b12faacea59f821f3cd56269246953 [file] [log] [blame]
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// RUN: cp %s %t
3// RUN: %clang_cc1 -fixit -x c++ %t
4// RUN: FileCheck -input-file=%t %s
5
6void f(int a[10][20]) {
7 // CHECK: delete[] a;
8 delete a; // expected-warning {{'delete' applied to a pointer-to-array type}}
9}