aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs164/pr194314/Service.java
blob: f3302fa4055ce1df77bb6929887b5ace1eaa4dc1 (plain)
1
2
3
4
5
6
7
public class Service implements IService {

    public void method(long l) throws Exception {
        System.err.println("Original impl of service method, arg " + l);
    }
}