brintos

brintos / llvm-project-archived public Read only

0
0
Text · 182 B · d1c8038 Raw
15 lines · cpp
1#include "foo.h"2 3struct Main {4  Main();5  int x;6};7 8Main::Main() : x(47) {9    bool some_code = x == 47; // !BR_main10}11 12Main MainObj;13 14int main() { return MainObj.x + FooObj.x; }15