Files
kotlin/compiler/testData/asJava/lightClasses/StubOrderForOverloads.kt
Nikolay Krasko 94e3a51a45 Test no psi stub mismatch for light classes with suspend in overloads
IdeCompiledLightClassTestGenerated is relevant.
2017-09-14 12:28:26 +03:00

8 lines
127 B
Kotlin
Vendored

// A
class A {
fun foo(p1: P?, p2: P?) {}
fun foo(listener: suspend RS.(P?, P?) -> Unit) {}
}
interface P
interface RS