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
When compiling C source that uses exit, I get a type error because exit is declared to return void (fn exit(__status : i32);) rather than diverging (fn exit(__status : i32) -> !;).
The text was updated successfully, but these errors were encountered:
When compiling C source that uses
exit
, I get a type error because exit is declared to return void (fn exit(__status : i32);
) rather than diverging (fn exit(__status : i32) -> !;
).The text was updated successfully, but these errors were encountered: