Added test for defect #60

git-svn-id: http://picoc.googlecode.com/svn/trunk@354 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
zik.saleeba 2009-10-28 21:35:35 +00:00
parent 50b45890bc
commit 7560c29942
2 changed files with 4 additions and 0 deletions

3
tests/29_array_address.c Normal file
View file

@ -0,0 +1,3 @@
char a[10];
strcpy(a, "abcdef");
printf("%s\n", &a[1]);

View file

@ -0,0 +1 @@
bcdef