mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +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);
|
|
}
|
|
} |