commented test for KT-857
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user