FIR IDE: quickfix to make class abstract if member not implemented

This commit is contained in:
Tianyu Geng
2021-04-09 19:34:45 -07:00
committed by TeamCityServer
parent 6e3009b82e
commit 06ba143afe
7 changed files with 48 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Make 'Foo' 'abstract'" "true"
abstract class Bar {
abstract val i: Int
}
class <caret>Foo : Bar() {}