mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
17 lines
347 B
Java
17 lines
347 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(){}
|
|
|
|
} |