1#include "static-1.H"
2int LocalStaticTest()
3{
4        static A sa;
5}
6
7int main(int argc, char **argv)
8{
9        A::StaticTest();
10}
11