summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/refactoring/introduceConstant/binaryExpression/stringCompareTo.kt.after
blob: e3f4c32e14694e32991e207754b131d74bea8df5 (plain)
1
2
3
4
5
6
7
8
// EXTRACTION_TARGET: property with initializer
val a = 1

private const val b = "1" > "1"

fun foo(): String {
    return b
}