8 lines
192 B
C++
8 lines
192 B
C++
// Test to ensure changed variables and functions are accounted for correctly in
|
|
// --leaf-changes-only mode.
|
|
long changed_var = 0; // was int
|
|
|
|
long changed_fun() { // was int
|
|
return 0;
|
|
}
|