Files
kotlin-fork/idea/testData/intentions/convertToExpressionBody/afterAnonymousObjectExpression.kt
T
2014-01-23 18:50:26 +04:00

10 lines
160 B
Kotlin

// "Convert to expression body" "true"
trait I {
fun foo(): String
}
fun bar(): I = object: I {
override fun foo(): String {
return "a"
}
}