langtools/test/tools/javac/cast/6932571/T6932571neg.java
author katleman
Thu, 21 Aug 2014 14:16:14 -0700
changeset 25878 6d561031123e
parent 6353 bb5c39054bf3
permissions -rw-r--r--
Added tag jdk9-b27 for changeset 98ce0879ab4c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6353
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     1
/*
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     2
 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     4
 *
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     7
 * published by the Free Software Foundation.
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     8
 *
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    13
 * accompanied this code).
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    14
 *
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    18
 *
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    21
 * questions.
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    22
 */
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    23
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    24
/*
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    25
 * @test
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    26
 * @bug     6932571
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    27
 * @summary Compiling Generics causing Inconvertible types
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    28
 * @compile/fail/ref=T6932571neg.out -XDrawDiagnostics T6932571neg.java
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    29
 */
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    30
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    31
class T6932571neg {
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    32
    interface I<T>{ }
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    33
    interface I1 extends I<String> {}
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    34
    static class Y implements I<String> {}
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    35
    final static class S implements I<String> {}
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    36
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    37
    <G extends I<G>> void test() {
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    38
        S s = new S();
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    39
        G g = (G) s;
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    40
    }
bb5c39054bf3 6932571: Compiling Generics causing Inconvertible types
mcimadamore
parents:
diff changeset
    41
}