Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: X10 1.7.3
-
Fix Version/s: X10 1.7.3
-
Component/s: XRX Runtime
-
Labels:None
-
Number of attachments :
Description
Currently System.out.println gets a bad place exception if done from any place but the place where Console happens to have been first referenced.
public class Bug { public static def main(Rail[String]) { for (p:Place in Place.places) async(p) System.out.println("hi"); } }