mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
15 lines
198 B
Java
15 lines
198 B
Java
|
|
public class pr11951
|
||
|
|
{
|
||
|
|
public static Object dosomething()
|
||
|
|
{
|
||
|
|
throw new Error();
|
||
|
|
}
|
||
|
|
|
||
|
|
public static native void nmethod();
|
||
|
|
|
||
|
|
public static void main(String[] args)
|
||
|
|
{
|
||
|
|
nmethod();
|
||
|
|
}
|
||
|
|
}
|