Browse Source

add test (closes #4246)

Simon Krajewski 9 năm trước cách đây
mục cha
commit
942de8c74a
1 tập tin đã thay đổi với 10 bổ sung0 xóa
  1. 10 0
      tests/unit/src/unit/issues/Issue4246.hx

+ 10 - 0
tests/unit/src/unit/issues/Issue4246.hx

@@ -0,0 +1,10 @@
+package unit.issues;
+
+class Issue4246 extends Test {
+	public static function and() { }
+	public static function _and() { }
+	function test() {
+		and();
+		_and();
+	}
+}