| 275 | int loc = 4; |
| 276 | struct MyStruct : MyBase { |
| 277 | void operator+=(int q) { |
| 278 | label: |
| 279 | static_member += q; |
| 280 | goto label; |
| 281 | } |
| 282 | /* that's magic */ |
| 283 | int foo() { return 4; } |
| 284 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected