blob: 53fdc5044554c9dcb8e47bd3fcb38e4d4cdcb24c [file] [log] [blame]
struct foo {
};
int bar_2(struct foo* y) {
(void) y;
return 0;
}
int bar(const volatile struct foo* y) {
(void) y;
return 1;
}
int baz(int (*const volatile y)(const volatile struct foo*)) {
(void) y;
return 2;
}
int (*const volatile quux)(const volatile struct foo*) = &bar;