浏览代码

[tests] avoid problem on Java/C#

Simon Krajewski 7 年之前
父节点
当前提交
cc958c96ac
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/unit/src/unit/issues/Issue6952.hx

+ 1 - 1
tests/unit/src/unit/issues/Issue6952.hx

@@ -3,7 +3,7 @@ package unit.issues;
 @:generic class Issue6952TestClass<@:const T> {
 	public function new() {}
 	public function foo() {
-		return T;
+		T;
 	}
 }