Java - Memory Management Basics
Identify the error in the following Java code related to garbage collection:
public class GCExample {
public static void main(String[] args) {
Object obj = new Object();
obj = null;
System.gc;
}
}