Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/g++.dg/pch/static-1.C
2023-03-06 14:48:14 +01:00

13 lines
153 B
C

#include "static-1.H"
int LocalStaticTest()
{
static A sa;
return 0;
}
int main(int argc, char **argv)
{
A::StaticTest();
return 0;
}