Let Implement Quickfix: Launch "Implement Members" dialog after applying #KT-11836 Fixed

This commit is contained in:
Kirill Rakhman
2016-04-08 21:38:06 +02:00
committed by Mikhail Glukhikh
parent 9bf395a4cd
commit 56fd2d28b8
3 changed files with 24 additions and 4 deletions
@@ -9,5 +9,7 @@ fun bar() {
fun foo(a: A) {
}
interface A
interface A {
fun gav()
}
class B
@@ -2,12 +2,18 @@
package let.implement
fun bar() {
foo(B()<caret>)
foo(B())
}
fun foo(a: A) {
}
interface A
class B : A
interface A {
fun gav()
}
class B : A {
override fun gav() {
throw UnsupportedOperationException()
}
}