summaryrefslogtreecommitdiff
path: root/tests/headers/c_naming.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/c_naming.h')
-rw-r--r--tests/headers/c_naming.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/headers/c_naming.h b/tests/headers/c_naming.h
deleted file mode 100644
index fd84c271..00000000
--- a/tests/headers/c_naming.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// bindgen-flags: --c-naming
-
-typedef const struct a {
- int a;
-} *a;
-
-union b {
- int a;
- int b;
-};
-typedef union b b;
-
-enum c {
- A,
-};
-
-void takes_a(a arg) {}
-void takes_b(b arg) {}
-void takes_c(enum c arg) {}