OSDN Git Service

PR c++/44148
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / tc1 / dr194.C
1 // { dg-do compile }
2 // Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
3 // DR194: Identifying constructors 
4
5 struct A
6 {
7   inline explicit A();
8 };
9
10 template <class>
11 struct B
12 {
13   inline explicit B();
14 };
15
16 template struct B<void>;