redundant type args: provide context for copied enum constant (IDEA-191043)

This commit is contained in:
Anna Kozlova
2018-05-02 20:06:10 +02:00
parent a03846e220
commit e137127cc1
3 changed files with 11 additions and 1 deletions
@@ -0,0 +1,6 @@
// "Replace with <>" "false"
import java.util.*;
enum Test {
test(new ArrayList<St<caret>ring>());
Test(List<String> l){}
}