moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 21:30:27 +04:00
parent 4c0f33ef3b
commit 6b7a2dc8c4
9 changed files with 6 additions and 0 deletions
@@ -0,0 +1,9 @@
public class Test {
public Runnable foo(final int i) {
return new Runnable() {
private int myInt = i;
public void run(){
}
}
}
}