aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr194314/test/Service.java
blob: 0a409c60a0496fdf9b11aa4d271b24d684669fe9 (plain)
1
2
3
4
5
6
7
8
package test;

public class Service implements IService {

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