blob: 30ae98a335fc9eda5c612134390bb09dcd8fd38f [file] [log] [blame]
class Test {
void foo() {
<caret>Runnable runnable = new Runnable() {
public void run() {
// This is comment"
int i = 1;
}
};
}
}