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

private const val b = 1 > 1

fun foo(): Boolean {
    return b
}