summaryrefslogtreecommitdiff
path: root/tests/headers/allowlist-file.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/allowlist-file.hpp')
-rw-r--r--tests/headers/allowlist-file.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/headers/allowlist-file.hpp b/tests/headers/allowlist-file.hpp
deleted file mode 100644
index b0354a04..00000000
--- a/tests/headers/allowlist-file.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// bindgen-flags: --allowlist-file ".*/allowlisted/file.*" --allowlist-type AllowlistMe -- -Itests/headers
-
-
-// Forward declaration of struct that's defined in an allowlisted file.
-struct StructWithAllowlistedDefinition;
-
-#include "allowlisted/file.hpp"
-
-// Actual definition of struct that has a forward declaration in an allowlisted file.
-struct StructWithAllowlistedFwdDecl {
- int b;
-};
-
-class Ignored {
- char c;
-};
-
-// Also have an explicitly allowlisted type
-class AllowlistMe {
- int foo;
-};