diff options
Diffstat (limited to 'tests/headers/dupe-enum-variant-in-namespace.h')
-rw-r--r-- | tests/headers/dupe-enum-variant-in-namespace.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/headers/dupe-enum-variant-in-namespace.h b/tests/headers/dupe-enum-variant-in-namespace.h deleted file mode 100644 index 2b6fb93a..00000000 --- a/tests/headers/dupe-enum-variant-in-namespace.h +++ /dev/null @@ -1,10 +0,0 @@ -// bindgen-flags: --rustified-enum ".*" --enable-cxx-namespaces -- -x c++ -std=c++11 - -namespace foo { - enum class Bar : unsigned { - Foo = 0, - Foo1 = 0, - Foo2, - Foo3 = Foo2, - }; -} |