mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-15 01:30:03 +08:00
PR java/13733 * libjava.compile/PR13733.java: New file. * libjava.compile/PR13733.xfail: New file. From-SVN: r76389
11 lines
198 B
Java
11 lines
198 B
Java
// 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
|
|
}
|
|
}
|