IDEA-128948 Smart type completion should propose generic parameter type

This commit is contained in:
peter
2014-08-26 14:32:23 +02:00
parent 6564528108
commit 53e2c49b27
7 changed files with 57 additions and 12 deletions
@@ -0,0 +1,8 @@
class StringEx<T extends String> {
}
class Outer<T extends String> {
static class CompletionTest<T extends String> {
private StringEx<<caret>> myString;
}
}