blob: eb7d5ee00acb383faa634fa5605257f04f17fa3e [file] [log] [blame]
class Comments {
void m(boolean b) {
boolean c;
// 1
// 2
c = b || f();
// 3
// 4
//5
//6
}
boolean f() {
return true;
}
}