method signature: don't substitute twice during erasure (IDEA-167386)

This commit is contained in:
Anna.Kozlova
2017-02-01 15:47:45 +01:00
parent 5fb2be806e
commit e3352b820f
3 changed files with 15 additions and 1 deletions
@@ -0,0 +1,10 @@
class Foo<T> {
void run(T param) {}
void anonymousClass() {
new Foo<T[]>() {
@Override
void run(T[] param) {}
};
}
}