summaryrefslogtreecommitdiff
path: root/tests/headers/class_with_inner_struct.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/headers/class_with_inner_struct.hpp')
-rw-r--r--tests/headers/class_with_inner_struct.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/headers/class_with_inner_struct.hpp b/tests/headers/class_with_inner_struct.hpp
new file mode 100644
index 00000000..40199ccc
--- /dev/null
+++ b/tests/headers/class_with_inner_struct.hpp
@@ -0,0 +1,9 @@
+class A {
+ unsigned c;
+ struct Segment { int begin, end; };
+};
+
+class B {
+ unsigned d;
+ struct Segment { int begin, end; };
+};