[CL rev. 4798, Win7]
I've got this simple C code:
Code: Select all
typedef struct
{
unsigned char c;
} MyStruct1;
typedef struct MyStruct2
{
unsigned char c;
} * pMyStruct2;
int main(int argc, char **argv)
{
MyStruct1 a;
struct MyStruct2 b;
pMyStruct2 p = &b;
a.c = 0;
b.c = 1;
p->c = 2;
return 0;
}
Thanks.