diff options
Diffstat (limited to 'libjava/testsuite/libjava.compile/PR13733.java')
-rw-r--r-- | libjava/testsuite/libjava.compile/PR13733.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libjava/testsuite/libjava.compile/PR13733.java b/libjava/testsuite/libjava.compile/PR13733.java deleted file mode 100644 index fb5cc82..0000000 --- a/libjava/testsuite/libjava.compile/PR13733.java +++ /dev/null @@ -1,10 +0,0 @@ -// 15.26: "The type of an assignment expression is the type of the variable" -// (LHS). -class PR13733 { - String a, c = ""; - Object b; - - void bug() { - a = (b = c); // invalid without cast - } -} |