blob: 6e02b72c65203edc20f5988a778e67119f858dbe [file] [log] [blame]
class Test {
void method(Object x) {
String s = null;
s = (String) x;
toInline(s.length());
}
void toIn<caret>line(final int i) {
Runnable r = new Runnable() {
public void run() {
System.out.println(i);
}
};
System.out.println(i);
}
}