Procházet zdrojové kódy

fixed illegal foward assignment not caught by 1.0.6

tags/V_1_1_b5
jhugunin před 21 roky
rodič
revize
c46adac651
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2
    1
      tests/new/AroundDoubleAssignmentC.java

+ 2
- 1
tests/new/AroundDoubleAssignmentC.java Zobrazit soubor

@@ -70,7 +70,8 @@ public aspect AroundDoubleAssignmentC {

class FieldInit {
/** @testcase PR#687 around all execution with double assignment in initializer (fieldinit) */
String s = s = getString();
String s = getString();
{ s = s; }
String getString() { return "test".toString(); }
}


Načítá se…
Zrušit
Uložit