blob: 8c6ff891453e8baa0a91848a5c70883b0c0f6e19 [file] [log] [blame]
struct nested {
long x;
};
struct containing {
struct nested inner;
};
struct referring {
struct nested * inner;
};
int register_ops6(containing) { return 6; }
int register_ops7(containing*) { return 7; }
int register_ops8(referring) { return 8; }
int register_ops9(referring*) { return 9; }