mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
public class A {
|
||||
public class <caret>Inner implements Runnable {
|
||||
private final int c;
|
||||
|
||||
public Inner(int arg) {
|
||||
c = arg;
|
||||
}
|
||||
|
||||
public void run() {
|
||||
System.out.println(c);
|
||||
}
|
||||
}
|
||||
|
||||
public void test() {
|
||||
int c = 0;
|
||||
Inner i = new Inner(1);
|
||||
new Thread(i).start();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user