blob: ffc779adec2d6be047f05d0741dbc8b3358f51be [file] [log] [blame]
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);