• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --enable-cxx-namespaces --constified-enum-module ns1::ns2::foo
2 
3 namespace ns1 {
4   namespace ns2 {
5     enum foo {
6       THIS,
7       SHOULD_BE,
8       A_CONSTANT,
9     };
10   }
11 
12   namespace ns3 {
13     struct bar {
14       enum ns2::foo this_should_work;
15     };
16   }
17 }