nimterop/tests/include/test2.hpp
Timothee Cour 6a4158dab4 fixup
2018-11-27 18:28:14 -05:00

24 lines
247 B
C++

#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;