KT-38003 "Analyze Data Flow from Here" should work on parameter of abstract method
#KT-38003 Fixed
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
// FLOW: OUT
|
||||
|
||||
interface I {
|
||||
fun foo(p: Any)
|
||||
}
|
||||
|
||||
class C : I {
|
||||
override fun foo(p: Any) {
|
||||
println(p)
|
||||
}
|
||||
}
|
||||
|
||||
fun bar(i: I, s: String) {
|
||||
i.foo(<caret>s)
|
||||
}
|
||||
Reference in New Issue
Block a user