Example: ```zig fn foo(comptime flag: bool) callconv(if (flag) .Unspecified else .Async) void {} test "" { // Yields: "error: use of undeclared identifier 'flag'" foo(true); } ```
Example: