blob: f8d7b904ccd8682e403b66aba4032296521b33ad [file] [log] [blame]
// Regression test for PR 28178.
public class PR28178
{
static {
System.loadLibrary("PR28178");
}
public static native void m();
public static void main(String[] args)
{
m();
}
}