mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 21:15:58 +07:00
13 lines
267 B
Java
13 lines
267 B
Java
import java.lang.Class;
|
|
import java.lang.String;
|
|
|
|
public class Test {
|
|
public static void main(String[] args) {
|
|
Test.class.getDeclaredConstructor(String.class).newInstance("Foo");
|
|
}
|
|
|
|
public Test(String param) {
|
|
System.out.println("This is used!");
|
|
}
|
|
}
|