Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
multimodule
/
samWithSuspendFunctionFromAnotherModule.kt
blob: 82883735e7394eb87be88e20945cebfb2d154910 [
file
]
// FIR_IDENTICAL
// FIR_IDE_IGNORE
// TODO: KT-50732
// ISSUE: KT-51007
// MODULE: lib
fun
interface
A
{
suspend fun foo
()
}
// MODULE: main(lib)
suspend fun bar
()
{}
fun takeA
(
a
:
A
?)
{}
fun test
()
{
takeA
{
bar
()
}
}