blob: 0ac33e58edcab6b79c50ba6ec75c89ddc9149b48 [file] [log] [blame]
class Test {
private String s;
String <caret>method() {
s = "Hello";
return s;
}
void test() {
System.out.println(method());
System.out.println(s);
}
}