mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
14 lines
80 B
C++
14 lines
80 B
C++
// PR 26442
|
|
|
|
struct A
|
|
{
|
|
A();
|
|
};
|
|
|
|
int main()
|
|
{
|
|
if (0)
|
|
A();
|
|
return 0;
|
|
}
|