summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/inherit_typedef.hpp
blob: 8d699e826cdbb9040015d6149a91a9ce87a53bc7 (plain)
1
2
3
4
5
struct Foo {};

typedef Foo TypedefedFoo;

struct Bar: public TypedefedFoo {};