diff tests/mini/slices2.d @ 820:bb4a81e68ddb

Implemented allocating storage for a slice if its address is taken, fixes #115
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 02 Dec 2008 01:20:22 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/mini/slices2.d	Tue Dec 02 01:20:22 2008 +0100
@@ -0,0 +1,5 @@
+void main()
+{
+    int[10] arr = void;
+    int[]* ptr = &arr[1..3];
+}