]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/PR232B.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / PR232B.java
diff --git a/libjava/testsuite/libjava.compile/PR232B.java b/libjava/testsuite/libjava.compile/PR232B.java
deleted file mode 100644 (file)
index 0c12653..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-// This triggers a failure when compiling from bytecode (only) with 20000519
-
-public class PR232B
-{
-  private static Object lock = new Object();
-  private static PR232B instance = null;
-
-  public void a()
-  {   
-    synchronized(lock)
-    {
-      instance = new PR232B();
-    } 
-  }
-};