6966252: Bump the HS19 build number to 04
Summary: Update the HS19 build number to 04
Reviewed-by: jcoomes
import java.io.Serializable;
public class T {
public static void main(String[] args) {
T t = new T();
t.createObject();
}
public Object createObject() {
return new Serializable() {
void method() {
}
};
}
}