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