1 class C0 2 { 3 public: 4 int m0; 5 C0()6 C0() 7 :m0(0) 8 {} 9 }; 10 11 typedef C0 c0_type; 12 13 void foo(c0_type)14 foo(c0_type) 15 {} 16