]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/G19990210_3.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / G19990210_3.java
diff --git a/libjava/testsuite/libjava.compile/G19990210_3.java b/libjava/testsuite/libjava.compile/G19990210_3.java
deleted file mode 100644 (file)
index 36a56fd..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*-------------------------------------------------------------------------*/
-/* File name : G19990210_3                                                 */
-/*           :                                                             */
-/* Cause     :                                                             */
-/*           :                                                             */
-/* Message   : G19990210_3.java: In class `G19990210_3':                   */
-/*           : G19990210_3.java: In method `foo()':                        */
-/*           : G19990210_3.java:23: Invalid argument to `++'.              */
-/*           :                         o.i++;                              */
-/*           :                            ^                                */
-/*           : 1 error                                                     */
-/*-------------------------------------------------------------------------*/
-public class G19990210_3  {
-  static void foo() {
-       bar o = new bar();
-       synchronized(o) {
-         o.i++;
-       }
-  }
-}
-class bar {
-  static int i;
-}