• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --rustified-enum ".*"
2 
3 enum {
4     match,
5     whatever_else,
6 };
7 
8 class C {
9     int i;
10 public:
11     virtual void match();
12 };
13