mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
introduce variable: use right expression if left ref is unresolved (IDEA-72914)
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
import java.util.*;
|
||||
|
||||
public class Test<T>
|
||||
{
|
||||
List<Collection<T>> getList ()
|
||||
{
|
||||
return new ArrayList<Collection<T>> ();
|
||||
}
|
||||
|
||||
public void test2 (Test<?> arg)
|
||||
{
|
||||
res<caret>ult = arg.getList ();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user