The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
typedef struct a { char x; } ex1, *ptr1;

typedef struct b { char x; } ex2, *ptr2; 

main() {
  ptr1 x,y;
  ptr2 z, t;

  z = t;
  x = y;
}