1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#include <stdint.h> #define TEST_INT 512 #define TEST_FLOAT 5.12 #define TEST_HEX 0x512 int test_call_int(); struct Foo{ int bar; }; class Foo1{ int bar1; }; template<typename T> struct Foo2{ int bar2; }; typedef Foo2<int> Foo2_int;