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.
15 lines
238 B
15 lines
238 B
7 months ago
|
long var_added = 0;
|
||
|
long fun_added() { return 0; }
|
||
|
|
||
|
long var_changed = 0;
|
||
|
long fun_changed() { return 0; }
|
||
|
|
||
|
struct type_added {
|
||
|
long x;
|
||
|
};
|
||
|
struct type_changed {
|
||
|
long x;
|
||
|
};
|
||
|
|
||
|
void victim(struct type_changed * dummy) { (void)dummy->x; }
|