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