mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-25 06:29:20 +00:00
14 lines
80 B
C++
14 lines
80 B
C++
|
// PR 26442
|
||
|
|
||
|
struct A
|
||
|
{
|
||
|
A();
|
||
|
};
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
if (0)
|
||
|
A();
|
||
|
return 0;
|
||
|
}
|