Java - Memory Management Basics
Identify the error in this code snippet:
class Test {
public static void main(String[] args) {
Object obj;
System.out.println(obj);
}
}