mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
Make all tests have two variants: with and without debug info. Also, move bytecode fixtures out of BytecodeLineMappingTest because it adds too much noise there. Move it to the newly created testData directory instead. GitOrigin-RevId: 1b44b118d470ace068774d9714eafc2704119e86
13 lines
302 B
Java
13 lines
302 B
Java
package simple2;
|
|
|
|
public class Main {
|
|
public static String name = "Charlie";
|
|
public static Object obj = new Object();
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println("hello world");
|
|
int argCount = args.length;
|
|
System.out.println("there are " + argCount + " args");
|
|
}
|
|
}
|