瀏覽代碼

add test for issue #6266

frabbit 8 年之前
父節點
當前提交
4c0c47d086
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      tests/unit/src/unit/issues/Issue6266.hx

+ 9 - 0
tests/unit/src/unit/issues/Issue6266.hx

@@ -0,0 +1,9 @@
+package unit.issues;
+
+class Issue6266 extends unit.Test {
+
+	function test() {
+		var foo = "foo";
+		eq(Reflect.field(foo, "length"), 3);
+	}
+}