aboutsummaryrefslogtreecommitdiff
path: root/tests/include/test2.hpp
blob: 2f9a28185773f71144cf61a1a39a99f3fedfe1eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdint.h>

#define TEST_INT 512
#define TEST_FLOAT 5.12
#define TEST_HEX 0x512

extern "C" {
  int test_call_int();

  struct Foo{
    int bar;
  };
}

class Foo1{
  int bar1;
};

template<typename T>
struct Foo2{
  int bar2;
};

typedef Foo2<int> Foo2_int;