mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
8 lines
270 B
Java
8 lines
270 B
Java
class Neg06 {
|
|
|
|
static class CSuperFoo<X> {}
|
|
static class CFoo<X extends Number> extends CSuperFoo<X> {}
|
|
|
|
CSuperFoo<String> csf1 = new CFoo<<error descr="Type parameter 'java.lang.String' is not within its bound; should extend 'java.lang.Number'"></error>>();
|
|
}
|