16 lines
253 B
Kotlin
Vendored
16 lines
253 B
Kotlin
Vendored
// MODULE: context
|
|
|
|
// FILE: context.kt
|
|
fun test() {
|
|
<caret_context>val x = 0
|
|
}
|
|
|
|
|
|
// MODULE: main
|
|
// MODULE_KIND: CodeFragment
|
|
// CONTEXT_MODULE: context
|
|
|
|
// FILE: fragment.kt
|
|
// CODE_FRAGMENT_KIND: BLOCK
|
|
fun String.ext() = this + "EXT"
|
|
"base".ext() |