14 lines
80 B
C++
Raw Normal View History

2012-03-28 01:13:14 +02:00
// PR 26442
struct A
{
A();
};
int main()
{
if (0)
A();
return 0;
}