// "Move assignment to field declaration" "true-preview" public class Test { String myField = "foo"; private String value; void f() { value = myField.trim(); } }