Files
kotlin-fork/idea/testData/inspectionsLocal/moveLambdaOutsideParentheses/delegation.kt
T
2018-10-15 19:52:10 +03:00

5 lines
114 B
Kotlin
Vendored

// PROBLEM: none
interface I
class C1(s: String, f: (String) -> String) : I
class C2 : I by C1("", <caret>{ "" })