mach mal
1
man strip
Hat bei FreePascal immer gut geklappt.
TGTman strip
import std.stdio;
class A {
	char[] foo = "A - Damn it";
	void output() {
		writefln(this.foo);
	}
}
class B : A {
	char[] foo = "B - Juhu :D";
}
void main() {
	B b = new B;
	b.output();
}
class B : A {
	this() {
		foo = "B - Juhu :D";
	}
}
this->foo;