What will this code do? ``` public class A { private int a = 0; public static int met() { return a++; } } ```
Anonymous
It will produce a compile time error because a static method is not allowed to reference an instance variable.
Check out your Company Bowl for anonymous work chats.