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