mattunlv / ProcessJ-main-branch-old

ProcessJ Compiler Project
2 stars 4 forks source link

Runtime Error #21

Open mattunlv opened 7 years ago

mattunlv commented 7 years ago

public proc void guard(chan.read[] up, chan.read[] down) [yield=true] { int seated = 0; boolean any;

while (true) { alt { any = down[0].read(): { seated++; } } } }

code gen error in any=down[0].read()