Files
kotlin-fork/idea/testData/intentions/implementAsConstructorParameter/function.kt
T
2015-12-30 00:56:34 +03:00

9 lines
110 B
Kotlin
Vendored

// IS_APPLICABLE: false
// DISABLE-ERRORS
interface A {
abstract fun <caret>foo(): Int
}
class B : A {
}