759ffafb0a
Main targets for the fix is completion, parameters info, inlay hints and override/implement. Other IDE functions might be affected. #KT-24911 Fixed #KT-25616 Fixed #KT-25622 Fixed
8 lines
127 B
Plaintext
Vendored
8 lines
127 B
Plaintext
Vendored
import foo.A
|
|
|
|
class B : A() {
|
|
override fun foo(s1: String, s2: String?): String {
|
|
return super.foo(s1, s2)
|
|
}
|
|
}
|