Let Implement Quickfix: Launch "Implement Members" dialog after applying #KT-11836 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
9bf395a4cd
commit
56fd2d28b8
@@ -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()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user