mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
moving tests
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
public class A {
|
||||
|
||||
public void test() {
|
||||
int c = 0;
|
||||
Runnable i = new Runnable() {
|
||||
private final int c = 1;
|
||||
|
||||
public void run() {
|
||||
System.out.println(c);
|
||||
}
|
||||
};
|
||||
new Thread(i).start();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user