comparison tangotests/c.d @ 172:68a7dd38c03c trunk

[svn r188] Fixed using a dereferenced pointer argument as both l- and r-value. fixes tango.io.FileRoots. Reorganized the tangotests dir a bit.
author lindquist
date Tue, 06 May 2008 07:26:27 +0200
parents 1700239cab2e
children
comparison
equal deleted inserted replaced
171:95f07e3f8bb9 172:68a7dd38c03c
16 16
17 void func2(Bar c) 17 void func2(Bar c)
18 { 18 {
19 c.i = 123; 19 c.i = 123;
20 } 20 }
21
22 void main()
23 {
24 func();
25 }