소스 검색

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();
+	}
+}