| 274 | local_static = "hello"; |
| 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 | }; |
| 285 | |
| 286 | goto label; |
| 287 | MyStruct s; |
nothing calls this directly
no outgoing calls
no test coverage detected