• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --constified-enum-module foo
2 
3 enum foo {
4   Type,
5   Type_,
6   Type1,
7   Type__,
8 };
9 
10 struct bar {
11   enum foo member;
12 };
13