mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
18 lines
293 B
Kotlin
Vendored
18 lines
293 B
Kotlin
Vendored
// SCOPE: 'fun baa() {'
|
|
// SCOPE: ' val list = listOf<String>("Z")'
|
|
// SCOPE: ' }'
|
|
|
|
class Comment {
|
|
fun q() {
|
|
|
|
}
|
|
|
|
val someValue: String
|
|
get() {
|
|
return "X"
|
|
}
|
|
|
|
fun baa() {
|
|
val list = listOf<String>(<selection>"Z"</selection>)
|
|
}
|
|
} |