changeset 853:4ff7cad261b3

Wang Zhen <nehzgnaw@gmail.com> 2006-02-17 news:dt4b75$2j45$4@digitaldaemon.com
author thomask
date Sat, 18 Feb 2006 08:07:42 +0000
parents 386484ee55c0
children b450f8aa4d3c
files nocompile/t/typeinfo_01_B.d nocompile/t/typeinfo_01_C.d nocompile/t/typeinfo_01_D.d
diffstat 3 files changed, 56 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/t/typeinfo_01_B.d	Sat Feb 18 08:07:42 2006 +0000
@@ -0,0 +1,18 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Wang Zhen <nehzgnaw@gmail.com>
+// @date@	2006-02-17
+// @uri@	news:dt4b75$2j45$4@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 17
+
+module dstress.nocompile.t.typeinfo_01_B;
+
+struct S{
+}
+
+void main(){
+	typeinfo(S);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/t/typeinfo_01_C.d	Sat Feb 18 08:07:42 2006 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Wang Zhen <nehzgnaw@gmail.com>
+// @date@	2006-02-17
+// @uri@	news:dt4b75$2j45$4@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 18
+
+module dstress.nocompile.t.typeinfo_01_C;
+
+struct S{
+}
+
+void main(){
+	S s;
+	typeinfo(s);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/t/typeinfo_01_D.d	Sat Feb 18 08:07:42 2006 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Wang Zhen <nehzgnaw@gmail.com>
+// @date@	2006-02-17
+// @uri@	news:dt4b75$2j45$4@digitaldaemon.com
+
+// __DSTRESS_ELINE__ 18
+
+module dstress.nocompile.t.typeinfo_01_D;
+
+struct S{
+}
+
+void main(){
+	S s;
+	s.typeinfo;
+}