summaryrefslogtreecommitdiffstats
path: root/test/test/misc/en/InnerTest.java
blob: 44361ff0fbe5edceb21705f0418465ea1f937fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test.misc.en;

import test.misc.en.InnerTest$1;

public class InnerTest {

   public static void main(String[] args) throws Throwable {
      String test = args[0];
      int test1 = Integer.parseInt(args[1]);
      new InnerTest$1(test, test1);
      System.out.println("готово");
   }
}