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