summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/enum_and_vtable_mangling.hpp
blob: 3abd6a292dec903c364a24251c5c5b9b316aab96 (plain)
1
2
3
4
5
6
7
8
9
10
11

enum {
    match,
    whatever_else,
};

class C {
    int i;
public:
    virtual void match() { };
};