mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user