commented test for KT-857

This commit is contained in:
Alex Tkachman
2011-12-21 10:05:26 +02:00
parent ad795d958f
commit 4fb7d95247
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,7 @@
namespace container_test
class Container<T>(var t : T) {
fun getT() : T = t
}
fun box() = Container<String>("OK").getT()
@@ -235,4 +235,8 @@ public class ClassGenTest extends CodegenTestCase {
public void testKt707 () throws Exception {
blackBoxFile("regressions/kt707.jet");
}
public void testKt857 () throws Exception {
// blackBoxFile("regressions/kt857.jet");
}
}