272ca002d7
#KT-35242 Fixed
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(""))
|
|
}
|
|
} |