blob: 77cf624d2c521516a9551c3124cce28337e578bb [file] [log] [blame]
class Outer {
String getValue() { return "";}
void doSomething (String x) { }
void foo() {
new Runnable() {
public void run() {
final String <caret>value = getValue();
doSomething(value);
}
};
}
}