blob: 1b476bf50ac8faa3ac00de34f6987abd1763ab7a [file] [log] [blame]
// TARGET:
class A(val a: Int, s: String) {
val x = a + 1
fun foo() = (<selection>a + 1</selection>) * 2
}
fun test() {
A(1, "2")
}