| 37 | // C++20 |
| 38 | #if 0 |
| 39 | int likelyTest(int i) { |
| 40 | switch(i) { |
| 41 | [[unlikely]] case 1: return 2; |
| 42 | [[likely]] case 2: return 1; |
| 43 | } |
| 44 | return 2; |
| 45 | } |
| 46 | #endif |
| 47 | |
| 48 | // empty class |
nothing calls this directly
no outgoing calls
no test coverage detected