ソースを参照

add test (closes #4246)

Simon Krajewski 9 年 前
コミット
942de8c74a
1 ファイル変更10 行追加0 行削除
  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();
+	}
+}