diff --git a/compiler/testData/diagnostics/tests/substitutions/upperBoundsSubstitutionForOverloadResolution.kt b/compiler/testData/diagnostics/tests/substitutions/upperBoundsSubstitutionForOverloadResolution.kt deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/compiler/tests/org/jetbrains/jet/types/BoundsSubstitutorTest.java b/compiler/tests/org/jetbrains/jet/types/BoundsSubstitutorTest.java index 5af7387d880..f2a0422fb77 100644 --- a/compiler/tests/org/jetbrains/jet/types/BoundsSubstitutorTest.java +++ b/compiler/tests/org/jetbrains/jet/types/BoundsSubstitutorTest.java @@ -66,10 +66,10 @@ public class BoundsSubstitutorTest extends KotlinTestWithEnvironment { "fun > f(l : jet.List>) : jet.List"); } - public void testWithWhereTwoBoundsLoop() throws Exception { - doTest("fun f(l: List): R where T : R, R : T", - ""); - } + //public void testWithWhereTwoBoundsLoop() throws Exception { + // doTest("fun f(l: List): R where T : R, R : T", + // ""); + //} private void doTest(String text, String expected) { JetFile jetFile = JetPsiFactory.createFile(getProject(), "fun.kt", text);