comparison tests/mini/n.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents tangotests/n.d@44a95ac7368a
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 struct Structure
2 {
3 static void static_method()
4 {
5 }
6
7 void method()
8 {
9 }
10 }
11
12 void main()
13 {
14 //Structure.static_method();
15
16 Structure s;
17 s.method();
18 }