summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/constructor-tp.hpp
blob: 3b5d54071a530ba5673d3d598f2d778d4a0b2120 (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

template<typename T>
class Foo {
public:
  Foo();

  void doBaz();
};

template<typename T>
void
Foo<T>::doBaz() {
}

class Bar {
public:
  Bar();
};

template<typename T>
Foo<T>::Foo() {
}

Bar::Bar() {
}