live templates: incorrect adding generic parameter IDEA-134434

This commit is contained in:
Andrey Starovoyt
2014-12-23 18:14:29 +03:00
parent 74eaf5419f
commit b20fc1c936
9 changed files with 108 additions and 21 deletions

View File

@@ -0,0 +1,13 @@
import java.util.List;
class Foo {
<T> void method1(final T[] val) {
class Inner {
void method2() {
for (T t : <selection>val</selection><caret>) {
}
}
}
}
}