org.aspectj/tests/bugs154/pr194314/test/Service.java
2007-11-12 22:19:59 +00:00

9 lines
198 B
Java
Executable File

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