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

Class A

src/test/resources/pta/basic/Recursion.java:12–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10}
11
12class A {
13 public B foo(B b) {
14 B b1 = b;
15 B b2 = goo(b1);
16 return b2;
17 }
18
19 public B goo(B b) {
20 B b3 = b;
21 B b4 = foo(b3);
22 return b4;
23 }
24}
25
26class B {
27

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected