mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +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();
|
|
}
|
|
}
|
|
|