comparison tangotests/r.d @ 134:0dec7b3727ea trunk

[svn r138] forgot the latest tests
author lindquist
date Mon, 14 Jan 2008 05:32:24 +0100
parents
children
comparison
equal deleted inserted replaced
133:44a95ac7368a 134:0dec7b3727ea
1 extern(C) int printf(char*, ...);
2
3 class C
4 {
5 void dump()
6 {
7 printf("C dumped\n");
8 }
9 }
10
11 void heap()
12 {
13 auto c = new C;
14 c.dump();
15 }
16
17 void stack()
18 {
19 scope c = new C;
20 c.dump();
21 }
22
23 void main()
24 {
25 heap();
26 stack();
27 }