diff options
Diffstat (limited to 'tests/headers/empty-enum.h')
-rw-r--r-- | tests/headers/empty-enum.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/headers/empty-enum.h b/tests/headers/empty-enum.h deleted file mode 100644 index 8b7502e6..00000000 --- a/tests/headers/empty-enum.h +++ /dev/null @@ -1,15 +0,0 @@ -// bindgen-flags: --rustified-enum '.*Rustified.*' --constified-enum-module '.*Module.*' -- -x c++ --std=c++14 - -// Constified is default, so no flag for that. - -enum EmptyConstified {}; -enum EmptyRustified {}; -enum EmptyModule {}; - -enum class EmptyClassRustified : char {}; -enum class EmptyClassConstified : char {}; -enum class EmptyClassModule : char {}; - -enum class ForwardClassRustified : char; -enum class ForwardClassConstified : char; -enum class ForwardClassModule : char; |