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

Class A

src/test/resources/pta/lambda/LambdaConstructor.java:39–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37 }
38
39 static class A {
40
41 B b;
42
43 A() {
44 this.b = new B();
45 }
46
47 A(B b) {
48 this.b = b;
49 }
50
51 A(B b1, B b2) {
52 if (hashCode() > 0) {
53 b = b1;
54 } else {
55 b = b2;
56 }
57 }
58 }
59}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected