0 / 60 seg.

How does the following code snippet behave when compiled and executed?

public class Test {
    public final void show() {
        System.out.println("Hello, Java!");
    }
    public static void main(String[] args) {
        new Test().show();
    }
}