Finishing setting up tests (compiler server).

This commit is contained in:
Dmitry Boulytchev (dboulytchev@gmail.com)
2012-02-02 01:13:16 +04:00
parent 24d086dedb
commit 7d194f269e
2643 changed files with 34 additions and 8 deletions
@@ -0,0 +1,9 @@
import impl.Service;
import java.security.Provider;
class Client {
public static void main(String[] args) {
new Service(10);
}
}
@@ -0,0 +1,4 @@
package impl;
public class Service{
public Service(int a){}
}