
package tests; // TestB.java:1: error: implicitly declared class should not have package declaration
public class TestB {
    public static boolean test() // <--- missing open brace
        return true;
    }
    public static boolean test2() {
        return true;
    }
} 

