blob: ff6076fc4337ff6ca4b35ac30b8eee056a158b6b [file] [log] [blame]
// bindgen-flags: --rust-target 1.0
struct Foo_empty {};
struct Foo;
struct Bar {
Foo *f;
};
void baz_struct(Foo* f);
union Union;
void baz_union(Union* u);
class Quux;
void baz_class(Quux* q);