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

Function main

tests/EnumDecl2Test.cpp:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <cstdio>
2
3int main()
4{
5 enum class Colour{red= 0,green= 2,blue};
6
7 printf("%d %d %d\n", Colour::red, Colour::green, Colour::blue);
8}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected