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

Class Apple

tests/EduCfrontTest8.cpp:7–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include <new>
6
7class Apple
8{
9 char mX{};
10 int mY{};
11
12public:
13 Apple(int x, int y)
14 : mX(x)
15 , mY{y}
16 {
17 printf("Apple\n");
18 }
19
20 ~Apple() { printf("~Apple\n"); }
21};
22
23int main()
24{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected