Wrong caption "Change to property access" for Quick Fix to convert class instantiation to object reference #KT-13870 Fixed (#1189)

This commit is contained in:
Toshiaki Kameyama
2017-07-18 22:47:43 +09:00
committed by Dmitry Jemerov
parent 987c7f5be8
commit 865f9d4c7e
6 changed files with 50 additions and 4 deletions
@@ -0,0 +1,8 @@
// "Remove invocation" "true"
enum class Test {
A
}
fun test() {
Test.A<caret>()
}