diff compile/const_11.d @ 1590:1d1f281a9b11

Move const_11 to compile. Addresses of globals are valid constants.
author Christian Kamm <kamm incasoftware de>
date Mon, 25 Aug 2008 22:08:00 +0200
parents nocompile/const_11.d@1f6cf5ccfbc9
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/compile/const_11.d	Mon Aug 25 22:08:00 2008 +0200
@@ -0,0 +1,13 @@
+// $HeadURL$
+// $Date$
+// $URL$
+
+module dstress.compile.const_11;
+
+struct MyStruct{
+	int i=2;
+}
+
+const MyStruct s;
+const MyStruct* sp = &s;
+