test/tools/javac/cast/6558559/T6558559b.java

Mon, 09 Mar 2009 13:29:06 -0700

author
xdono
date
Mon, 09 Mar 2009 13:29:06 -0700
changeset 229
03bcd66bd8e7
parent 187
e157bd68dfc5
child 525
9871ce4fd56f
permissions
-rw-r--r--

6814575: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 03/09
Reviewed-by: katleman, tbell, ohair

mcimadamore@187 1 /*
xdono@229 2 * Copyright 2008-2009 Sun Microsystems, Inc. All Rights Reserved.
mcimadamore@187 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
mcimadamore@187 4 *
mcimadamore@187 5 * This code is free software; you can redistribute it and/or modify it
mcimadamore@187 6 * under the terms of the GNU General Public License version 2 only, as
mcimadamore@187 7 * published by the Free Software Foundation.
mcimadamore@187 8 *
mcimadamore@187 9 * This code is distributed in the hope that it will be useful, but WITHOUT
mcimadamore@187 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
mcimadamore@187 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
mcimadamore@187 12 * version 2 for more details (a copy is included in the LICENSE file that
mcimadamore@187 13 * accompanied this code).
mcimadamore@187 14 *
mcimadamore@187 15 * You should have received a copy of the GNU General Public License version
mcimadamore@187 16 * 2 along with this work; if not, write to the Free Software Foundation,
mcimadamore@187 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
mcimadamore@187 18 *
mcimadamore@187 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
mcimadamore@187 20 * CA 95054 USA or visit www.sun.com if you need additional information or
mcimadamore@187 21 * have any questions.
mcimadamore@187 22 */
mcimadamore@187 23
mcimadamore@187 24 /*
mcimadamore@187 25 * @test
mcimadamore@187 26 * @bug 6558559
mcimadamore@187 27 * @summary Extra "unchecked" diagnostic
mcimadamore@187 28 * @author Maurizio Cimadamore
mcimadamore@187 29 *
mcimadamore@187 30 * @compile T6558559b.java -Xlint:unchecked -Werror
mcimadamore@187 31 */
mcimadamore@187 32
mcimadamore@187 33 import java.util.*;
mcimadamore@187 34
mcimadamore@187 35 class T6558559b {
mcimadamore@187 36 void test(List rawList, List<?> unboundList) {
mcimadamore@187 37 Throwable t0 = (Throwable) Collections.emptyList();
mcimadamore@187 38 Throwable t1 = (Throwable) rawList;
mcimadamore@187 39 Throwable t2 = (Throwable) unboundList;
mcimadamore@187 40 Object o = unboundList;
mcimadamore@187 41 Throwable t3 = (Throwable) o;
mcimadamore@187 42 }
mcimadamore@187 43 }

mercurial