2017-06-14 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / virtual3.C
blob2e4adca237797b6c7df5ed10a4167b6517548a7d
1 // PR c++/51620
3 template<int> class A
5   virtual ~A();                 // { dg-message "non-deleted|private" }
6 };
8 struct B : A<0>, A<1>           // { dg-error "deleted|context" }
10   B() {}                        // { dg-error "context" }