mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
fixed tests for Linux
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
public class YoYo {
|
||||
int y;
|
||||
static class YoYoYo {
|
||||
private YoYo anObject;
|
||||
private int y;
|
||||
|
||||
public YoYoYo(YoYo anObject, int y) {
|
||||
this.anObject = anObject;
|
||||
this.y = y;
|
||||
}
|
||||
|
||||
void foo (){
|
||||
YoYo yoYoy = anObject;
|
||||
int t = y;
|
||||
int t1 = yoYoy.y;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user