OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / duplicate1.C
1 //PR c++/19439
2
3 template<int> struct A
4 {
5   ~A() {}       // { dg-error "with" }
6   ~A() {}       // { dg-error "cannot be overloaded" }
7 };