1 | #define HIDE_FROM_PLUGIN 1 |
---|---|
2 | #include "service.h" |
3 | |
4 | struct ServiceAux { |
5 | Service *Owner; |
6 | }; |
7 | |
8 | struct Service::State {}; |
9 | |
10 | void exported() { |
11 | // Make sure debug-info for definition of Service is |
12 | // emitted in this CU. |
13 | Service service; |
14 | service.start(0); |
15 | } |
16 |