org.aspectj/tests/harness/LenientTest.java

12 lines
248 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
import org.aspectj.testing.Tester;
public class LenientTest {
public void m() {
return;; // CE 6 in -lenient only
}
public static void main(String[] args) {
Tester.check(null != new LenientTest(), "no test");
}
}