mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
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
|
||
|
|
}
|
||
|
|
}
|