'identifier' : bit field cannot have indirection
The bit field was declared as a pointer, which is not allowed. For example:
struct S { int *b : 1; // error };