Issue 37: Little Enum toString issue
Status:  Fixed
Owner: ----
Closed:  Jul 2010
Reported by heinz.ho...@googlemail.com, Jul 26, 2010
What steps will reproduce the problem?

create the following file

enum A {
	A1(name:String);
}

class Test2 {
	public static function main () {
		var a = A1(null);
		trace(a); 
	}
}



What is the expected output? What do you see instead?

traces A1() but should trace A1(null) as in neko for example

What version of the product are you using? On what operating system?
current svn




Jul 28, 2010
Project Member #1 gameh...@gmail.com
Fixed on hxcpp svn
Status: Fixed