blob: 1ba9a8de8229fcadd0502c299b13fc9db93f69e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#define TEST_INT 512
int test_call_int();
struct Foo{
int bar;
};
class Foo1{
int bar1;
};
template<typename T>
struct Foo2{
int bar2;
};
typedef Foo2<int> Foo2_int;
|