blob: 023ec69842fcbd34a2b461b806e7296bf6beb520 [file] [log] [blame]
// 5, 23 -> 5, 38
class Foo {
public final static String BASE = "base."; //$NON-NLS-1$
private static final String CONSTANT= BASE + "suffix";
public void m1() {
String name = CONSTANT;
}
}