summaryrefslogtreecommitdiffstats
path: root/src/test/misc/en/InnerTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/misc/en/InnerTest.java')
-rw-r--r--src/test/misc/en/InnerTest.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/misc/en/InnerTest.java b/src/test/misc/en/InnerTest.java
new file mode 100644
index 0000000..44361ff
--- /dev/null
+++ b/src/test/misc/en/InnerTest.java
@@ -0,0 +1,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("готово");
+ }
+}