blob: 99d11ecc9ec5ba2ad16abe658f1860c070293b55 [file] [log] [blame]
class Test {
void method(Object x) {
String s = null;
s = (String) x;
toInline(s.length());
}
void toInli<caret>ne(final int i) {
System.out.println(i);
}
}