mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
moving tests
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
class <caret>Inlined {
|
||||
private int myA;
|
||||
|
||||
public Inlined(String s) {
|
||||
process(s);
|
||||
}
|
||||
|
||||
public void process(String s) {
|
||||
myA = s.length();
|
||||
}
|
||||
}
|
||||
|
||||
class C {
|
||||
public void test() {
|
||||
Inlined i = new Inlined("a");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user