mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
10 lines
146 B
Kotlin
Vendored
10 lines
146 B
Kotlin
Vendored
// A
|
|
class A {
|
|
fun foo(p1: P?, p2: P?) {}
|
|
fun foo(listener: suspend RS.(P?, P?) -> Unit) {}
|
|
}
|
|
|
|
interface P
|
|
interface RS
|
|
|
|
// FIR_COMPARISON |