1struct embodied { int y; };
2struct disembodied;
3
4void reg1(const struct embodied * foo) { (void)foo; }
5void reg2(const struct disembodied * foo) { (void)foo; }
6