From 0bc371d376f3fe74f0be50edd9d7b1dc82d22598 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 6 Dec 2004 15:30:57 +0000 Subject: For PR java/14853: * testsuite/libjava.compile/PR14853.java: New file. * testsuite/libjava.compile/PR14853.xfail: New file. From-SVN: r91777 --- libjava/testsuite/libjava.compile/PR14853.java | 17 +++++++++++++++++ libjava/testsuite/libjava.compile/PR14853.xfail | 1 + 2 files changed, 18 insertions(+) create mode 100644 libjava/testsuite/libjava.compile/PR14853.java create mode 100644 libjava/testsuite/libjava.compile/PR14853.xfail (limited to 'libjava/testsuite/libjava.compile') diff --git a/libjava/testsuite/libjava.compile/PR14853.java b/libjava/testsuite/libjava.compile/PR14853.java new file mode 100644 index 0000000..a800c52 --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR14853.java @@ -0,0 +1,17 @@ +class tt +{ + static final tt tt1 = new tt(); + tt() + { + } +} + +public class PR14853 +{ + public static void main (String[] args) + { + // This is an invalid assignment. gcj would get confused in + // definite assignment when compiling to object code. + tt.tt1 = new tt(); + } +} diff --git a/libjava/testsuite/libjava.compile/PR14853.xfail b/libjava/testsuite/libjava.compile/PR14853.xfail new file mode 100644 index 0000000..e3b083b --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR14853.xfail @@ -0,0 +1 @@ +shouldfail -- cgit v1.1