12 lines
329 B
Kotlin
Vendored
12 lines
329 B
Kotlin
Vendored
// PARAM_TYPES: X
|
|
// PARAM_TYPES: Y
|
|
// PARAM_DESCRIPTOR: public final fun X.test(): kotlin.Unit defined in Y
|
|
// PARAM_DESCRIPTOR: public final class Y defined in root package in file addPrefixToBackticks.kt
|
|
class X(val x: Int)
|
|
|
|
// SIBLING:
|
|
class Y(val y: Int) {
|
|
fun X.test() {
|
|
<selection>`x`plus y</selection>
|
|
}
|
|
} |