Browse Source

add test (closes #4246)

Simon Krajewski 9 years ago
parent
commit
942de8c74a
1 changed files with 10 additions and 0 deletions
  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();
+	}
+}