blob: 54072d1c475df72411737d57b630a4fcebed6909 [file] [log] [blame]
class Test {
void method() {
otherMethod();
System.out.println("Here");
}
void otherMethod<caret>() {
return;
}
}