| 1 | // cmdlineinsights:-edu-show-cfront |
| 2 | |
| 3 | int main() |
| 4 | { |
| 5 | static_assert(sizeof(int) != 0); |
| 6 | |
| 7 | static_assert(sizeof(int) != 0, "Just a test"); |
| 8 | |
| 9 | int* p = nullptr; |
| 10 | |
| 11 | typedef int myInt; |
| 12 | // using myOtherInt = int; |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected