mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-05 22:32:37 +00:00
16 lines
273 B
Java
16 lines
273 B
Java
|
// gcj used to generate incorrect bytecode for
|
||
|
// staticMethod().staticMethod()
|
||
|
public class pr16789
|
||
|
{
|
||
|
public void foo()
|
||
|
{
|
||
|
System.out.println(Thread.currentThread().holdsLock(this));
|
||
|
}
|
||
|
|
||
|
public static void main(String[] args)
|
||
|
{
|
||
|
new pr16789().foo();
|
||
|
}
|
||
|
}
|
||
|
|