Files
openide/java/java-tests/testData/refactoring/inlineMethod/FinalParameters1.java
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

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);
}
}