class Loophole { public static String loophole (Byte y) { LinkedList xs = new LinkedList(); LinkedList ys = xs; // compile-time error ys.add(y); return xs.iterator().next(); } }