Files
kotlin-fork/idea/testData/quickfix/modifiers/kt10409.kt
T
Denis Zharkov 1a6f9b8d1c Do not build inner type for error classes
#KT-10409 Fixed
2015-12-17 19:56:38 +03:00

15 lines
409 B
Kotlin
Vendored

// "Make 'IterablePipeline' abstract" "true"
// ERROR: 'pipe' overrides nothing
// ERROR: Type argument expected
// Actually this test is about getting rid of assertion happenning while creating quick fixes
// See KT-10409
interface Pipeline<TPipeline> {
fun pipe(block: Pipeline<TPipeline, String>)
}
<caret>class IterablePipeline<T> : Pipeline<T> {
override fun pipe(block: Pipeline<T>) {
}
}