You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
int var_removed = 0;
|
|
int fun_removed() { return 0; }
|
|
|
|
int var_changed = 0;
|
|
int fun_changed() { return 0; }
|
|
|
|
struct type_removed {
|
|
int x;
|
|
};
|
|
struct type_changed {
|
|
int x;
|
|
};
|
|
|
|
void victim(struct type_changed * dummy) { (void)dummy->x; }
|