comparison tangotests/e.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children 68a7dd38c03c
comparison
equal deleted inserted replaced
131:5825d48b27d1 132:1700239cab2e
1 extern(C) int printf(char*,...);
2
3 class MyClass
4 {
5 this(int i = 4)
6 {
7 inner = this.new InnerClass;
8 }
9
10 class InnerClass : Object.Monitor
11 {
12 void lock() {}
13 void unlock() {}
14 }
15
16 InnerClass inner;
17 }
18
19 void func()
20 {
21 scope c = new MyClass(42);
22 }