MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / main

Function main

tests/EduCfrontTest12.cpp:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// cmdlineinsights:-edu-show-cfront
2
3int main()
4{
5 int* i = new int;
6 long double* d = new long double(22.4);
7 double* db = new double{22.4};
8
9 delete i;
10 delete db;
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected