Searched defs:cow (Results 1 – 5 of 5) sorted by relevance
10 void (cow::*fp0)(char*) = &cow::moo; // OK in f() local11 void (cow::*fp1)(int) = &cow::moo; // ERROR - conversion in f() local12 int (cow::*fp2)(char*) = &cow::moo; // ERROR - conversion in f() local13 int (cow::*fp3)(char*, void*) = fp2; // ERROR - conversion in f() local14 int (cow::*fp4)(double) = (int (cow::*)(double)) fp2; // OK in f() local
16 cow_t cow[2]; // ERROR - abstract class in main() local
9 typedef int (*cow[3])(...); typedef
9 struct cow { }; struct
5 template<bool x> struct cow {}; struct