Circular Typedefs

Structs can easily have circular references:

struct ATag { struct BTag* pB; };
struct BTag { struct ATag* pA; };

Can the same thing be done with typedefs?
typedef struct { BType* pB; } AType; //???
typedef struct { AType* pA; } BType;

More questions in this forum