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

Class A

src/test/resources/pta/basic/CallParamRet.java:11–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9}
10
11class A {
12
13 void param() {
14 B b1 = new B();
15 B b2 = new B();
16 foo(b1, b2);
17 bar(b2, b1);
18 }
19
20 void foo(B p1, B p2) {
21 }
22
23 void bar(B p1, B p2) {
24 }
25
26 B id(B b) {
27 return b;
28 }
29}
30
31class B {
32}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected