mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
18 lines
304 B
Java
18 lines
304 B
Java
public class Synch
|
|
{
|
|
public synchronized void s()
|
|
{
|
|
// This call to notify() isn't supposed to cause a
|
|
// java.lang.IllegalMonitorStateException.
|
|
notify ();
|
|
}
|
|
|
|
public static void main (String[] args)
|
|
{
|
|
(new Synch()).s();
|
|
System.out.println ("Ok");
|
|
}
|
|
}
|
|
|
|
|