aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/delete2.C
blob: d90def03a3f976274983c6580322615e033b4bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link:

struct foo {
  operator char*() const;
};

void bar(foo a) {
  delete a; // should be accepted
  delete[] a; // should be accepted
  char b[1];
  delete b; // ERROR - expecting pointer type
  delete[] b; // ERROR - expecting pointer type
}