Java - Constructors
Find the problem in this code:
class A {
A() { System.out.print("A"); }
}
class B extends A {
B() { this(); System.out.print("B"); }
}