You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Main.java 346B

1234567891011121314
  1. package samenames;
  2. import org.aspectj.testing.Tester;
  3. public class Main {
  4. static Main samenames = new Main();
  5. public static void main(String[] args) {
  6. samenames.realMain(args);
  7. }
  8. void realMain(String[] args) {
  9. Tester.checkEqual(1, Other.returns1());
  10. Tester.checkEqual(2, new Other().returns2());
  11. }
  12. }