blob: 3b4656797de7a0ecb2a6497b68f030cb2ce807ec [file] [log] [blame]
// 7, 19 -> 7, 28
class BodyDeclOnSameLine {
private final static String BAR= "c";
private final static String FOO= "a"; /* ambiguous */
private static final String CONSTANT= FOO + BAR; String strange= "b"; //$NON-NLS-1$ //$NON-NLS-2$
void m() {
String s= CONSTANT;
}
}