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

Function main

tests/StructuredBindingsHandler4Test.cpp:1–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1int main()
2{
3 char p[2];
4 const auto[x, y] = p;
5
6
7 volatile char p2[2];
8 const auto[x2, y2] = p2;
9
10 char p3[2];
11 auto& [x3, y3] = p3;
12}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected