summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/accessingPropertiesViaField/usage.kt
blob: 024de4a9c42e4b9269802309fe442167f227aa75 (plain)
1
2
3
4
5
6
7
8
package test

fun main(args: Array<String>) {
    val x = a + b + other.other
    a = "aa"
    b = "bb"
    other.other = "other.other"
}