| 27 | |
| 28 | |
| 29 | int main() { |
| 30 | if (r1 != 777) return 1; |
| 31 | if (r2 != '!') return 2; |
| 32 | |
| 33 | r1 = 42; |
| 34 | r2 = 'A'; |
| 35 | |
| 36 | if (r1 != 42) return 3; |
| 37 | if (r2 != 'A') return 4; |
| 38 | if (f.some_integer != 42) return 5; |
| 39 | if (f.c != 'A') return 6; |
| 40 | |
| 41 | return 0; |
| 42 | } |
nothing calls this directly
no outgoing calls
no test coverage detected