فهرست منبع

[php] forgotten test for #5383

Alexander Kuzmenko 8 سال پیش
والد
کامیت
9d48806815
1فایلهای تغییر یافته به همراه15 افزوده شده و 0 حذف شده
  1. 15 0
      tests/unit/src/unit/issues/Issue5383.hx

+ 15 - 0
tests/unit/src/unit/issues/Issue5383.hx

@@ -0,0 +1,15 @@
+package unit.issues;
+
+class Issue5383 extends unit.Test {
+#if php
+	static var sys = Sys;
+    static var issue = Issue5383;
+
+    function test() {
+        //Should generate instance access
+        sys.print('TEST');
+        issue.sys.print('TEST');
+        t(true);
+    }
+#end
+}