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

Function main

tests/UsingDeclTest.cpp:51–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51int main()
52{
53 using std::string;
54 string str = "Example";
55
56 D<int> d;
57
58 using namespace std::string_literals; // makes visible operator""s
59 // from std::literals::string_literals
60 auto str2 = "abc"s;
61
62 using Vec = Test::Alloc;
63 Vec v;
64
65 using W = Test::West;
66 using B = Test::Best;
67 using F = Test::Fest;
68
69 namespace myStd = std;
70
71 namespace myInner = Test::Inner;
72
73 using vzz = Test::Inner::type;
74
75 using Test::Inner::Void;
76}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected