59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
20 lines
364 B
Kotlin
20 lines
364 B
Kotlin
class C {
|
|
fun foo(s: String): Boolean = true
|
|
|
|
fun bar() {
|
|
listOf("a").filter(<caret>)
|
|
}
|
|
|
|
default object {
|
|
fun staticFoo(s: String): Boolean = true
|
|
}
|
|
}
|
|
|
|
fun C.extensionFoo(s: String): Boolean = true
|
|
fun globalFoo(s: String): Boolean = true
|
|
|
|
// ABSENT: ::foo
|
|
// ABSENT: ::staticFoo
|
|
// ABSENT: ::extensionFoo
|
|
// EXIST: ::globalFoo
|