Multiple exit loop handling in ivopts. Regression tested on x86-64/linux
[official-gcc.git] / libjava / testsuite / libjava.lang / Synch.java
blob15e2d26b4a5587404a59a4198d32ef92097df98d
1 public class Synch
3 public synchronized void s()
5 // This call to notify() isn't supposed to cause a
6 // java.lang.IllegalMonitorStateException.
7 notify ();
10 public static void main (String[] args)
12 (new Synch()).s();
13 System.out.println ("Ok");