mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02: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();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|