Misc: Drop test for implementing abstract members in expect-class

The "not implemented" error is not reported for such classes, so
quick fix is not available anymore (see KT-16099)
This commit is contained in:
Alexey Sedunov
2017-10-17 19:22:37 +03:00
parent 997aa12bcc
commit 83b10403d7
3 changed files with 0 additions and 21 deletions
@@ -1,8 +0,0 @@
// "Implement members" "true"
// DISABLE-ERRORS
interface I {
fun foo()
}
expect class <caret>Bar : I
@@ -1,10 +0,0 @@
// "Implement members" "true"
// DISABLE-ERRORS
interface I {
fun foo()
}
expect class <caret>Bar : I {
override fun foo()
}