aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/pch/static-1.C
blob: 21e7789829867ae77f5dd09f7df808db63313a8b (plain)
1
2
3
4
5
6
7
8
9
10
#include "static-1.H"
int LocalStaticTest()
{
        static A sa;
}

int main(int argc, char **argv)
{
        A::StaticTest();
}