brintos

brintos / llvm-project-archived public Read only

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