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
The following program should be rejected with a nice error message (which one?); it currently crashes.
inline fn aux(reg u8 x) -> inline int {
inline int r;
if x == 0 { r = 0; }
return r;
}
export fn main() -> reg u8 {
inline int t;
reg u8 f;
t = aux(0);
f = t;
return f;
}
"bug_828.jazz", line 3 (14-20)
from line 10 (2-13):
internal compilation error:
AT_inline flag remains in instruction:
r = 0; /* int:i */
Please report …
The text was updated successfully, but these errors were encountered:
The following program should be rejected with a nice error message (which one?); it currently crashes.
The text was updated successfully, but these errors were encountered: