anon_ctor_itf_arg.java: New file.
authorAlexandre Petit-Bianco <apbianco@redhat.com>
Thu, 12 Jul 2001 21:39:56 +0000 (14:39 -0700)
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>
Thu, 12 Jul 2001 21:39:56 +0000 (14:39 -0700)
2001-07-12  Alexandre Petit-Bianco  <apbianco@redhat.com>

* libjava.compile/anon_ctor_itf_arg.java: New file.
* libjava.compile/anon_ctor_itf_arg.out: New file.

(http://gcc.gnu.org/ml/java-patches/2001-q3/msg00059.html)

From-SVN: r43974

libjava/testsuite/ChangeLog
libjava/testsuite/libjava.compile/anon_ctor_itf_arg.java [new file with mode: 0644]
libjava/testsuite/libjava.compile/anon_ctor_itf_arg.out [new file with mode: 0644]

index d9117f89d657c34f818018c1ea88bdba348a9b3e..3ca3d52a132f4bc62e93cc1aaa255370dec28211 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-12  Alexandre Petit-Bianco  <apbianco@redhat.com>
+
+       * libjava.compile/anon_ctor_itf_arg.java: New file.
+       * libjava.compile/anon_ctor_itf_arg.out: New file.
+
 2001-07-12  Tom Tromey  <tromey@redhat.com>
 
        * libjava.lang/N19990310_4.xfail: Removed.
diff --git a/libjava/testsuite/libjava.compile/anon_ctor_itf_arg.java b/libjava/testsuite/libjava.compile/anon_ctor_itf_arg.java
new file mode 100644 (file)
index 0000000..1fd16f1
--- /dev/null
@@ -0,0 +1,38 @@
+/* From java/3285, By p.thio@valescom.com */
+
+interface I
+{
+    void print ();
+};
+
+class C1
+implements I
+{
+    public void print () { System.out.println ("C1: Message"); }
+}
+
+abstract
+class C2
+{
+    C2(I i)
+    {
+       i.print ();
+    }
+    abstract void h();
+}
+
+public
+class anon_ctor_itf_arg
+{
+    public static
+    void main(String argv[])
+    {
+        C1 c1 = new C1();
+        new C2(c1)
+        {
+            void h()
+            {
+            }
+        };
+    }
+}
diff --git a/libjava/testsuite/libjava.compile/anon_ctor_itf_arg.out b/libjava/testsuite/libjava.compile/anon_ctor_itf_arg.out
new file mode 100644 (file)
index 0000000..abddf8e
--- /dev/null
@@ -0,0 +1 @@
+C1: Message