mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
15 lines
264 B
Java
15 lines
264 B
Java
/* Test case for PR java/15133 */
|
|
public class PR15133
|
|
{
|
|
public void printIt (String dummy) { }
|
|
|
|
public native void printIt (int num);
|
|
|
|
public static void main (String[] args)
|
|
{
|
|
System.loadLibrary ("PR15133");
|
|
|
|
new PR15133( ).printIt( 1729);
|
|
}
|
|
}
|