[extract method] IDEA-317499: infer type arguments for class usage parameters ('this')

GitOrigin-RevId: 7e1b558415ac7a7d381287e99bf54ce87eeef6cb
This commit is contained in:
Alexandr Suhinin
2023-04-07 14:26:59 +03:00
committed by intellij-monorepo-bot
parent 26bae9e549
commit 23ff859664
4 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
public class Test<K> {
public Test<K> test() {
<selection>return this;</selection>
}
}