comparison tangotests/a.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 4c577c2b7229
comparison
equal deleted inserted replaced
131:5825d48b27d1 132:1700239cab2e
1 class Foo
2 {
3 this(int j)
4 {
5 i = pi = j;
6 }
7
8 int i;
9
10 private:
11
12 int pi;
13 }
14
15 class Bar : Foo
16 {
17 this(int j)
18 {
19 super(j);
20 baz = 42;
21 }
22
23 int baz;
24 }
25
26 void func()
27 {
28 auto bar = new Bar(12);
29 }