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