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