Is there a zig way to cause a compile error if a code path isn't evaluated? I have a use case where a specific function must be called and was just spitballing about how to make sure I don't make a mistake and forget.
Of it were a comptime if or switch I could leave the else/default as a @compileError, but more generally I assume there's no option for a function?