Files
Anna Kozlova 0a3d001b76 [java] avoid reformat inside psi operation (IDEA-287332)
GitOrigin-RevId: 387a7fe6e41da1f967b05dfa7da246e70e02b30f
2022-02-11 09:33:24 +00:00

17 lines
240 B
Plaintext

interface Foreign {
default void foo (Test1 test1) {
test1.field++;
}
}
class ForeignImpl implements Foreign {
}
public abstract class Test1 {
int field;
void bar () {
new ForeignImpl().foo(this);
}
}