fixed tests for Linux

This commit is contained in:
Alexey Kudravtsev
2010-10-06 12:38:54 +04:00
parent 7adb624794
commit fbf92e3cb2
15 changed files with 11 additions and 11 deletions
@@ -0,0 +1,20 @@
public class YoYo {
int y;
static class YoYoYo {
private YoYo anObject;
public YoYoYo(YoYo anObject) {
this.anObject = anObject;
}
void foo (){
YoYo yoYoy = anObject;
int t = anObject.y;
int t1 = yoYoy.y;
anObject.new Other();
}
}
class Other {}
}