summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/initializers/properties/memberPropertyWithLambda.kt
blob: 3cd6766bcd14f44ad9d326783e74ceeaeecafeac (plain)
1
2
3
4
5
// PARAM_TYPES: kotlin.Int
// PARAM_DESCRIPTOR: value-parameter b: kotlin.Int defined in A.<init>
class A(val a: Int, b: Int) {
    val foo = { <selection>a + b</selection> - 1 }.invoke()
}