[NI] Remove failing codegen tests and add similar diagnostic one

These tests were added for suspend-conversions, it worked only
 with new inference, but implementation was incorrect and had other
 bugs, which were fixed in 1ac25259.
 Support of suspend-conversions will be addressed later with a different
 implementation (#KT-30703)
This commit is contained in:
Mikhail Zarechenskiy
2019-04-01 00:19:15 +03:00
parent 4a3e4f099d
commit a4cbec64b7
11 changed files with 34 additions and 124 deletions
@@ -1783,6 +1783,11 @@ public class DiagnosticsTestWithStdLibGenerated extends AbstractDiagnosticsTestW
public void testProperty_1_3() throws Exception {
runTestWithPackageReplacement("compiler/testData/diagnostics/testsWithStdLib/coroutines/callableReference/property.kt", "kotlin.coroutines");
}
@TestMetadata("suspendConversionForCallableReferences.kt")
public void testSuspendConversionForCallableReferences() throws Exception {
runTest("compiler/testData/diagnostics/testsWithStdLib/coroutines/callableReference/suspendConversionForCallableReferences.kt");
}
}
@TestMetadata("compiler/testData/diagnostics/testsWithStdLib/coroutines/inference")