1 // PR c++/63619
2 // { dg-options -Wno-delete-incomplete }
3 
main()4 int main() {
5    void* p;
6    delete p;
7 }
8