|
@@ -1,11 +1,13 @@
|
|
|
package unit.issues;
|
|
|
|
|
|
-class Issue5608 extends unit.Test {
|
|
|
+class Issue5608 extends unit.Test implements Dynamic<Bool> {
|
|
|
var fields:Array<String>;
|
|
|
|
|
|
function test() {
|
|
|
//should not throw
|
|
|
- fields = Reflect.fields(haxe.Serializer);
|
|
|
+ fields = Reflect.fields(Issue5608);
|
|
|
t(true);
|
|
|
}
|
|
|
+
|
|
|
+ public function resolve( name ) return true;
|
|
|
}
|