diff nocompile/bounds_checking_01.d @ 4:1ed6616fe905

extended array tests
author thomask
date Sun, 26 Sep 2004 15:54:31 +0000
parents
children 1f6cf5ccfbc9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/bounds_checking_01.d	Sun Sep 26 15:54:31 2004 +0000
@@ -0,0 +1,6 @@
+int main(){
+	byte[5] a;
+	a[100]=3;
+
+	return 0;
+}