aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wdelete-incomplete-2.C
blob: 6c3aaa74f1abc221d4bc43bdb3723abd7ea8d95b (plain)
1
2
3
4
5
6
7
8
// PR c++/43452
// { dg-options -Wno-delete-incomplete }

class Foo;
int main() {
   Foo* p;
   delete [] p;
}