Files
openide/java/java-tests/testData/refactoring/inlineMethod/ChainedConstructorWithSpacesInvalidation.java.after
Anna Kozlova b5617168c3 java inline chained constructors: ensure elements are not invalidated during processing (IDEA-255661)
GitOrigin-RevId: e600dbad74bed7eee0e0979bd1e33a2b7e9870bf
2020-11-20 09:33:47 +00:00

7 lines
99 B
Plaintext

public class Foo {
private Foo(String s) {}
{
Foo foo = new Foo("a" + " " + "b")
}
}