blob: d90def03a3f976274983c6580322615e033b4bf9 [file] [log] [blame]
// 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
}