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

Class A

docs/examples/braced-uniform-initialization.cpp:1–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1struct A
2{
3 // user provided constructor _missing_ initialization of `j`
4 A()
5 : i{3}
6 {
7 }
8
9 int i;
10 int j;
11};
12
13struct B
14{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected