Obsolete test case removed
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
package test;
|
||||
|
||||
import java.util.*;
|
||||
import jet.runtime.typeinfo.KotlinSignature;
|
||||
import jet.*;
|
||||
|
||||
public class MethodWithTupleType {
|
||||
@KotlinSignature("fun foo(pair : #(String, String?))")
|
||||
public void foo(Tuple2<String, String> pair) {
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
package test
|
||||
|
||||
import java.util.*
|
||||
|
||||
public open class MethodWithTupleType : Object() {
|
||||
public open fun foo(p0 : Tuple2<String, String?>) { // writing Tuple2<..> instead of #(..), because the latter
|
||||
// adds unnecessary "out" keywords
|
||||
}
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
namespace test
|
||||
|
||||
public open class test.MethodWithTupleType : java.lang.Object {
|
||||
public final /*constructor*/ fun <init>(): test.MethodWithTupleType
|
||||
public open fun foo(/*0*/ p0: jet.Tuple2<jet.String, jet.String?>): jet.Tuple0
|
||||
}
|
||||
@@ -255,11 +255,6 @@ public class LoadJavaTestGenerated extends AbstractLoadJavaTest {
|
||||
doTest("compiler/testData/loadJava/kotlinSignature/MethodWithMappedClasses.java");
|
||||
}
|
||||
|
||||
@TestMetadata("MethodWithTupleType.java")
|
||||
public void testMethodWithTupleType() throws Exception {
|
||||
doTest("compiler/testData/loadJava/kotlinSignature/MethodWithTupleType.java");
|
||||
}
|
||||
|
||||
@TestMetadata("MethodWithTypeParameters.java")
|
||||
public void testMethodWithTypeParameters() throws Exception {
|
||||
doTest("compiler/testData/loadJava/kotlinSignature/MethodWithTypeParameters.java");
|
||||
|
||||
Reference in New Issue
Block a user