comparison test/bug3.d @ 29:253a5fc4033a trunk

[svn r33] * Added support for assignment to function arguments
author lindquist
date Thu, 04 Oct 2007 13:45:22 +0200
parents 1c80c18f3c82
children 8b0e809563df
comparison
equal deleted inserted replaced
28:1c80c18f3c82 29:253a5fc4033a
2 2
3 struct S 3 struct S
4 { 4 {
5 int[] arr; 5 int[] arr;
6 char[5] ch; 6 char[5] ch;
7 }
8
9 class C
10 {
11 int[] arr;
12 char[4] crs;
7 } 13 }
8 14
9 void main() 15 void main()
10 { 16 {
11 S s; 17 S s;