mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
18 lines
348 B
Java
18 lines
348 B
Java
class A {
|
|
<T> A() {}
|
|
|
|
{
|
|
new <<error descr="Type argument cannot be of primitive type">int</error>>A();
|
|
}
|
|
}
|
|
|
|
class B<T> {
|
|
{
|
|
new B<<error descr="Type argument cannot be of primitive type">int</error>>();
|
|
B.<<error descr="Type argument cannot be of primitive type">int</error>>m();
|
|
}
|
|
|
|
<S> void m(){}
|
|
|
|
}
|