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

Class A

src/test/resources/pta/basic/MultiArray.java:8–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6}
7
8class A {
9
10 A f() {
11 int[] iarr = new int[10];
12 iarr[0] = 0;
13
14 A[][][] arr = new A[1][1][1];
15 arr[0][0][0] = new A();
16 A a = arr[0][0][0];
17
18 A[][][] arr2 = new A[10][10][];
19 arr2[0][0] = new A[2];
20 A[] aa = arr2[0][0];
21 return a;
22 }
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected