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