Fix small compilation problems in LC testdata which should not influence LC results

This commit is contained in:
Ilya Kirillov
2021-12-23 15:11:52 +03:00
parent 02f9f116b2
commit 4e58dc3467
8 changed files with 14 additions and 13 deletions
+4 -4
View File
@@ -1,15 +1,15 @@
//RELEASE_COROUTINE_NEEDED
//CHECK_BY_JAVA_FILE
class Foo {
suspend fun doSomething(foo: Foo): Bar {}
suspend fun doSomething(foo: Foo): Bar { TODO() }
}
class Boo {
private suspend fun doSomething(foo: Foo): Bar {}
private suspend fun doSomething(foo: Foo): Bar { TODO() }
}
class Bar {
fun <T> async(block: suspend () -> T)
fun <T> async(block: suspend () -> T) {}
}
interface Base {
@@ -17,7 +17,7 @@ interface Base {
}
class Derived: Base {
override suspend fun foo() { ... }
override suspend fun foo() { }
}
// WITH_STDLIB