mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
class Test {
|
|
void method(Object x) {
|
|
String s = null;
|
|
s = (String) x;
|
|
final int i = s.length();
|
|
Runnable r = new Runnable() {
|
|
public void run() {
|
|
System.out.println(i);
|
|
}
|
|
};
|
|
System.out.println(i);
|
|
}
|
|
}
|