Fixed availability of "Make abstract" and "Implement members" quickfixes

This commit is contained in:
Valentin Kipyatkov
2015-10-17 12:38:48 +03:00
parent fc10fa66be
commit 963a8992b1
12 changed files with 119 additions and 4 deletions
@@ -0,0 +1,10 @@
// "Implement members" "true"
abstract class A {
abstract fun foo()
}
class B : A() {
override fun foo() {
throw UnsupportedOperationException()
}
}