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

Function main

tests/Issue427.cpp:12–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10template<int val> int MyClass<val>::var = val;
11
12int main(int argc, char* argv[])
13{
14 MyClass<5> a;
15 MyClass<7> b;
16 MyClass<9> c;
17
18 std::cout << a.var << " , " << b.var << " , " << c.var << std::endl;
19
20 return 0;
21}
22

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected