summaryrefslogtreecommitdiff
path: root/tests/headers/issue-639-typedef-anon-field.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/issue-639-typedef-anon-field.hpp')
-rw-r--r--tests/headers/issue-639-typedef-anon-field.hpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/headers/issue-639-typedef-anon-field.hpp b/tests/headers/issue-639-typedef-anon-field.hpp
deleted file mode 100644
index efd6c4f4..00000000
--- a/tests/headers/issue-639-typedef-anon-field.hpp
+++ /dev/null
@@ -1,15 +0,0 @@
-class Foo {
- public:
- typedef struct {
- int abc;
- } Bar;
-
- Bar bar;
-};
-
-class Baz {
- public:
- typedef struct {
- int abc;
- } Bar;
-};