changeset 1565:6424a05d3113

r8718@birke: tk | 2007-09-30 10:55:49 +0200 [Issue 1523] struct literals not work with typedef <pop.atry@gmail.com> 2007-09-21 http://d.puremagic.com/issues/show_bug.cgi?id=1523
author thomask
date Sun, 30 Sep 2007 09:47:31 +0000
parents 1d41f2132ef4
children b50583aebed4
files run/s/struct_initialization_13_A.d run/s/struct_initialization_13_B.d run/s/struct_initialization_13_C.d
diffstat 3 files changed, 79 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/s/struct_initialization_13_A.d	Sun Sep 30 09:47:31 2007 +0000
@@ -0,0 +1,29 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<pop.atry@gmail.com>
+// @date@	2007-09-21
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1523
+// @desc@	[Issue 1523] struct literals not work with typedef
+
+module dstress.run.s.struct_initialization_13_A;
+
+struct BaseStruct {
+	int n;
+	char c;
+}
+
+typedef BaseStruct MyStruct;
+
+int myFunction(MyStruct m){
+	return m.n + m.c * 2;
+}
+
+int main() {
+	if(7 != myFunction(MyStruct(3, '\x02'))){
+		assert(0);
+	}
+
+        return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/s/struct_initialization_13_B.d	Sun Sep 30 09:47:31 2007 +0000
@@ -0,0 +1,27 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<pop.atry@gmail.com>
+// @date@	2007-09-21
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1523
+// @desc@	[Issue 1523] struct literals not work with typedef
+
+module dstress.run.s.struct_initialization_13_B;
+
+struct BaseStruct {
+	int n;
+	char c;
+}
+
+int myFunction(BaseStruct m){
+	return m.n + m.c * 2;
+}
+
+int main() {
+	if(7 != myFunction(BaseStruct(3, '\x02'))){
+		assert(0);
+	}
+
+        return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/s/struct_initialization_13_C.d	Sun Sep 30 09:47:31 2007 +0000
@@ -0,0 +1,23 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	<pop.atry@gmail.com>
+// @date@	2007-09-21
+// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=1523
+// @desc@	[Issue 1523] struct literals not work with typedef
+
+module dstress.run.s.struct_initialization_13_C;
+
+struct BaseStruct {
+	int n;
+	char c;
+}
+
+typedef BaseStruct MyStruct;
+
+int main() {
+	MyStruct m = MyStruct(3, '\x02');
+
+        return 0;
+}