MCPcopy Create free account
hub / github.com/LFYSec/MScan / A

Class A

src/test/resources/cha/InterestingSpecial.java:9–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7}
8
9class A {
10
11 private void interesting() {
12 System.out.println("A.interesting()");
13 }
14
15 void callInteresting() {
16 System.out.println(this);
17 interesting(); // Since Java 11, invokevirtual/invokeinterface
18 // may be used to call private methods
19 }
20}
21
22class B extends A {
23 void interesting() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected