view tests/mini/bug66.d @ 418:94c4e090c1af

clean out obj dir before running mini test.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 28 Jul 2008 07:25:13 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module bug66;
import std.stdio;
class Scene { string name() { return "Scene"; } }
class Group : Scene { this () { } }
void main() { writefln((new Group).name); }