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
Both stage1 and stage2 will emit an error for foo because they try to emit is as a runtime function even though it is only ever used at comptime.
fnfoo() void {
vara=false;
if (a) @compileError("analyzed as runtime");
}
comptime {
_=foo();
}
The text was updated successfully, but these errors were encountered:
Vexu
added
bug
Observed behavior contradicts documented or intended behavior
frontend
Tokenization, parsing, AstGen, Sema, and Liveness.
stage1
The process of building from source via WebAssembly and the C backend.
labels
Mar 13, 2022
Both stage1 and stage2 will emit an error for
foo
because they try to emit is as a runtime function even though it is only ever used at comptime.The text was updated successfully, but these errors were encountered: