Analyze Data Flow: Support cross-language analysis
#KT-16833 Fixed
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// FLOW: OUT
|
||||
|
||||
open class B : A {
|
||||
override fun foo() = <caret>2
|
||||
}
|
||||
|
||||
fun test(a: A, b: B, c: C, d: D) {
|
||||
val x = a.foo()
|
||||
val y = b.foo()
|
||||
val z = c.foo()
|
||||
val u = d.foo()
|
||||
}
|
||||
Reference in New Issue
Block a user