✗
Failing This test is currently failing.
Failed: backend-exec
Error Details
output_emitted.zig:88:18: error: expected statement, found '%'
Failure Output
🎯 Compiler coordination: Passes: 20 (flow-based: elaborate, analysis, emission)
Error: output_emitted.zig:88:18: error: expected statement, found '%'
{% if proc_name %}
^ Code
// Test: `|template(once)|zig` supports Liquid {% if %} blocks at template-time.
// The template renders WITHOUT the disabled-feature branch, so the runtime
// program never sees that code.
const std = @import("std");
~pub tor check {}
~proc check|template(once)|zig {
std.debug.print("running {{ proc_name }}\n", .{});
{% if proc_name %}
std.debug.print("template saw a proc_name\n", .{});
{% endif %}
}
~check()
Expected output
running check
template saw a proc_name
Flows
flow ~check click a branch to expand · @labels scroll to their anchor
check
Test Configuration
MUST_RUN