OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / ctor5.C
1 // PR c++/24278
2
3 template<typename T> struct A
4 {
5   A() : T(0) {} // { dg-error "base" }
6 };
7
8 A<int*> a; // { dg-message "instantiated" }