mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
13 lines
371 B
Kotlin
Vendored
13 lines
371 B
Kotlin
Vendored
|
|
import kotlin.script.experimental.annotations.*
|
|
import kotlin.script.experimental.api.*
|
|
import kotlin.script.experimental.util.*
|
|
|
|
object TestScriptWithReceiversDefinition : ScriptDefinition(
|
|
{
|
|
implicitReceivers<String>()
|
|
})
|
|
|
|
@KotlinScript(extension = "1.kts", definition = TestScriptWithReceiversDefinition::class)
|
|
abstract class TestScriptWithReceivers
|