"Create enum constant" quick fix: do not add redundant empty line

#KT-32981 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-09-05 11:58:18 +09:00
committed by Dmitry Gridin
parent 5dddc464a5
commit d9d04fc556
6 changed files with 37 additions and 8 deletions
@@ -0,0 +1,8 @@
// "Create enum constant 'C'" "true"
enum class E {
A, B
}
fun foo() {
E.<caret>C
}