blob: 632db4d06506962c2182bb1e03abc950eecc26f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// bindgen-flags: --dynamic-loading TestLib
int foo(void *x);
class A {
int _x;
public:
A(int x);
void some_function();
void some_other_function();
};
void bar();
|