import java.util.*; import java.sql.*; public class TwoStarImports { public static void main(String[] args) { Date d = new Date(0L); // the same clash, with the old on-demand imports System.out.println(d); } }