Browse Source

fixed illegal foward assignment not caught by 1.0.6

tags/V_1_1_b5
jhugunin 21 years ago
parent
commit
c46adac651
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      tests/new/AroundDoubleAssignmentC.java

+ 2
- 1
tests/new/AroundDoubleAssignmentC.java View File

@@ -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(); }
}


Loading…
Cancel
Save