Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/andreasfertig/cppinsights
/ main
Function
main
tests/UsingDecl2Test.cpp:29–44 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
27
};
28
29
int main()
30
{
31
UsingProtectedToPublicMember usingProtectedToPublicMember;
32
usingProtectedToPublicMember.protectedMember = 1;
33
34
35
D d;
36
B& b = d;
37
38
b.f(1);
39
d.f(1);
40
d.g(1);
41
d.g(
'a'
);
42
b.h(1);
43
d.h(1);
44
}
45
Callers
nothing calls this directly
Calls
3
f
Method · 0.45
g
Method · 0.45
h
Method · 0.45
Tested by
no test coverage detected