langtools/test/tools/javac/generics/T4757416.java
author hseigel
Wed, 02 Mar 2016 23:48:41 +0000
changeset 36397 c487ced7231c
parent 30719 91834c070ba5
child 45413 75202c6b2c35
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
30719
91834c070ba5 8074417: Group 13a: golden files for tests in tools/javac/generics dir
sogoel
parents: 5520
diff changeset
     2
 * @test /nodynamiccopyright/
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * @bug 4756416
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 * @summary generics: erasure clash not detected
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * @author gafter
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 *
30719
91834c070ba5 8074417: Group 13a: golden files for tests in tools/javac/generics dir
sogoel
parents: 5520
diff changeset
     7
 * @compile/fail/ref=T4757416.out -XDrawDiagnostics   T4757416.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
class T4756416 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
    static class C<A> { A id ( A x) { return x; } }
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
    interface I<A> { A id(A x); }
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
    static class D extends C<String> implements I<Integer> {
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
        public String id(String x) { return x; }
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
        public Integer id(Integer x) { return x; }
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
}