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