mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
11 lines
191 B
Java
11 lines
191 B
Java
package java.lang.instrument;
|
|
|
|
class Instrumentation {}
|
|
|
|
class Foo {
|
|
|
|
public void agentmain(String args, Instrumentation i) {
|
|
System.out.println(args);
|
|
System.out.println(i);
|
|
}
|
|
} |