In this snipped
1public class Test {
2 {
3 System.out.println("saida");
4 }
5
6 public static void main(String[] args){
7 Test t = new Test();
8 }
9}
How Java language call lines 2 to 4?