main.cpp 232 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 class A { public: static int a; int b; }; class B { public: static int a; int b; }; struct C { static int a; }; int A::a = 1111; int B::a = 2222; int C::a = 3333; int a = 4444; int main() // break here { return 0; }