mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
method signature: don't substitute twice during erasure (IDEA-167386)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Foo<T> {
|
||||
void run(T param) {}
|
||||
|
||||
void anonymousClass() {
|
||||
new Foo<T[]>() {
|
||||
@Override
|
||||
void run(T[] param) {}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user