mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
19 lines
359 B
Text
19 lines
359 B
Text
|
|
/**
|
|
* This class is used to test the results of the langtools build.
|
|
*/
|
|
public class HelloWorld {
|
|
|
|
public HelloWorld();
|
|
|
|
/**
|
|
* The old standby!
|
|
* @param args The parameters are ignored.
|
|
*/
|
|
public static void main(java.lang.String... args);
|
|
|
|
/**
|
|
* This declaration is for the benefit of javah tests.
|
|
*/
|
|
public native void test();
|
|
}
|