Files
ldc/test/classes7.d
Tomas Lindquist Olsen 4eab68b36c [svn r15] * Fixed a bunch problems with virtual calls. Seems I did some rather poor testing.
* Now 50/51 tests compile.
* Added a simple runalltests.d scripts that should be run with 'gdmd -run runalltests.d' - LLVMDC will not compile it yet.
2007-10-02 05:10:18 +02:00

22 lines
192 B
D

module classes7;
class C
{
int i=0;
void f()
{
i=42;
}
void g()
{
f();
}
}
void main()
{
scope c = new C;
c.g();
assert(c.i == 43);
}