mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
17 lines
255 B
Kotlin
Vendored
17 lines
255 B
Kotlin
Vendored
// SCOPE: '// some change'
|
|
|
|
class Comment {
|
|
fun q() {
|
|
|
|
}
|
|
|
|
val someValue: String
|
|
get() {
|
|
return "X"
|
|
}
|
|
|
|
fun baa() {
|
|
<selection>// some change</selection>
|
|
val list = listOf<String>(TODO(""))
|
|
}
|
|
} |