blob: 5824facc507b156a714d798ed5c1614c248791ed [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
Richard Trieu133ca802011-10-13 23:26:59 +00004// RUN: %clang_cc1 -E -o - %t | FileCheck %s
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00005
6void f(int a[10][20]) {
7 // CHECK: delete[] a;
8 delete a; // expected-warning {{'delete' applied to a pointer-to-array type}}
9}