aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/delete1.C
blob: a176652df712043f9105f742f9cfda2cb8e065db (plain)
1
2
3
4
5
#include <stddef.h>
struct A {
  virtual void operator delete (void *); // ERROR - virtual delete
  virtual void * operator new (size_t);	 // ERROR - virtual new
};