July 14, 2005
DMD 0.128, Windows XP SP2.
--
class Foo {}

void main() {
	Foo = new Foo;
}
--
"Foo is not an lvalue" and then Windows tells me that dmd.exe encountered a problem.
July 18, 2005
Deewiant wrote:

| DMD 0.128, Windows XP SP2.
| --
| class Foo {}
|
| void main() {
| 	Foo = new Foo;
| }
| --
| "Foo is not an lvalue" and then Windows tells me that dmd.exe
| encountered a problem.

Added to DStress as
http://dstress.kuehne.cn/nocompile/o/opAssign_02_A.d
http://dstress.kuehne.cn/nocompile/o/opAssign_02_B.d
http://dstress.kuehne.cn/nocompile/o/opAssign_02_C.d
http://dstress.kuehne.cn/nocompile/o/opAssign_02_D.d

Thomas