mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
19 lines
321 B
Java
19 lines
321 B
Java
|
|
// Test to make sure the minimal invocation works.
|
||
|
|
|
||
|
|
public class invoke
|
||
|
|
{
|
||
|
|
public static native int val ();
|
||
|
|
|
||
|
|
static
|
||
|
|
{
|
||
|
|
System.out.println ("trying...");
|
||
|
|
System.loadLibrary ("invoke");
|
||
|
|
System.out.println ("loaded");
|
||
|
|
}
|
||
|
|
|
||
|
|
public static void main (String[] args)
|
||
|
|
{
|
||
|
|
System.out.println (val ());
|
||
|
|
}
|
||
|
|
}
|