brintos

brintos / llvm-project-archived public Read only

0
0
Text · 168 B · e026bc0 Raw
18 lines · c
1 2#include "macro2.h"3 4#define ONE 15#define TWO 26#define THREE 37#define FOUR 48 9class Simple10{11public:12    int13    Method()14    {15        return ONE + TWO;16    };17};18