mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
16 lines
202 B
Java
16 lines
202 B
Java
// Regression test for PR 28178.
|
|
|
|
public class PR28178
|
|
{
|
|
static {
|
|
System.loadLibrary("PR28178");
|
|
}
|
|
|
|
public static native void m();
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
m();
|
|
}
|
|
}
|