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