blob: 3ed130071eb8902e43fc3df54f1496493d87267c [file] [log] [blame]
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR194: Identifying constructors
struct A
{
inline explicit A();
};
template <class>
struct B
{
inline explicit B();
};
template struct B<void>;