Analyze Data Flow: Support cross-language analysis
#KT-16833 Fixed
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
class B implements A {
|
||||
public int foo() {
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
|
||||
interface C extends A {
|
||||
public int foo();
|
||||
}
|
||||
|
||||
class D extends B implements C {
|
||||
public int foo() {
|
||||
return 4;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user