You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Agent {
def init() : void {
();
}
def pass_arr(arr:[int]) : void {
print arr[0];
}
}
class Main {
def main() : void {
let
l = 1*1000*1000
arr = new [int](l)
a = new Agent()
in {
a.pass_arr(arr);
}
}
}
After disabling GC for each actor, the above program still crashes. It's related to #116, but, maybe, it's a different bug.
The text was updated successfully, but these errors were encountered:
After disabling GC for each actor, the above program still crashes. It's related to #116, but, maybe, it's a different bug.
The text was updated successfully, but these errors were encountered: