mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
332 B
Java
16 lines
332 B
Java
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);
|
|
}
|
|
}
|