Hi all, I tried PointsToAnalysis by viewing PointsToSet of all local variables of the following code: A[][] x = new A[2][1]; x[0][0] = new A(); x[1][0] = new A(); A t = x[0][0]; and found out that the PointsToSet of t is null. If I tried with one-dimension array the result is right. Is there anyone who checked this? Or it is my fault? Cheers, Phung