✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
import java.awt.Point;
public class Obscuring {
static Point Test = new Point (3,2);
public static void main (String s []) {
System.out.println (Test.x);
}
}
class Test {
static int x = -5;
}
(Java)