IDEA-91842 Type parameters are shown for field but not for method

This commit is contained in:
peter
2012-09-24 17:37:10 +04:00
parent a51936baa6
commit f0b351d75a
4 changed files with 26 additions and 5 deletions
@@ -0,0 +1,10 @@
class Ref<T> {
T target;
}
class TestPoint2D {
void (Ref<String> r) {
r.<caret>
}
}