libing0526
Results
2
issues of
libing0526
Static variable cannot be initialized: ``` class Test { public: Test() { printf("Test:Test\n"); } ~Test() { printf("Test:~Test\n"); } }; int main() { static Test tt; std::cout