do not need parenthesis for associative operations (IDEADEV-41569); move to java...
[fedora-idea.git] / java / java-tests / testData / refactoring / introduceVariable / DuplicateGenericExpressions.after.java
blobbfa2e7e81f14e2606ecbea7a3a72663b6935ddb3
1 class Foo2<T> {
2 Foo2<? extends Runnable> getList() {
3 return null;
7 Foo2<T> f = new Foo2<T>();
8 Foo2<? extends Runnable> temp = f.getList();
9 Object a = temp;
10 Object b = temp;