1 // Header for PCH test delete.cpp
8 : a(new int[1]) { } // expected-note{{allocated with 'new[]' here}}
11 delete a
; // expected-warning{{'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'?}}
12 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:9-[[@LINE-1]]:9}:"[]"