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