summary refs log tree commit diff stats
path: root/compiler/c2nim/tests/struct_anonym.h
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2014-06-28 02:24:36 +0200
committerAndreas Rumpf <rumpf_a@web.de>2014-06-28 02:24:36 +0200
commite383200cf8278efb876fb19b73fbec52e2cb4694 (patch)
tree7ad8c8cd67633bd876fea33b94394154659f653c /compiler/c2nim/tests/struct_anonym.h
parent43e717bcb33ce140f670e8ee2512c1333012e37b (diff)
parent2940aa5ee200354f2bfd06eddbe51a16a7397d3d (diff)
downloadNim-e383200cf8278efb876fb19b73fbec52e2cb4694.tar.gz
Merge pull request #1260 from enurlyx/structs-in-structs
c2nim -> Support for anonymous structs/unions
Diffstat (limited to 'compiler/c2nim/tests/struct_anonym.h')
-rw-r--r--compiler/c2nim/tests/struct_anonym.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/compiler/c2nim/tests/struct_anonym.h b/compiler/c2nim/tests/struct_anonym.h
new file mode 100644
index 000000000..859bfc206
--- /dev/null
+++ b/compiler/c2nim/tests/struct_anonym.h
@@ -0,0 +1,27 @@
+
+struct normal{
+	int a;
+	int b;
+};
+
+typedef struct outerStruct {
+	struct normal a_nomal_one;
+	
+	int a;
+	
+	struct {
+		union {
+			int b;
+		} a_union_in_the_struct;
+		
+		int c;
+	};
+	
+	union {
+		int d;
+		
+		struct {
+			int e;
+		} a_struct_in_the_union;
+	} a_union;
+};
\ No newline at end of file