V1082. Function marked as 'noreturn' may return control. This will result in undefined behavior.
V1082 Function marked as 'noreturn' may return control. This will result in undefined behavior. ir_emitter.cpp 15
[[noreturn]] void ThrowInvalidType(Type type,
std::source_location loc = std::source_location::current()) {
const std::string functionName = loc.function_name();
const int lineNumber = loc.line();
// UNREACHABLE_MSG("Invalid type = {}, functionName = {}, line = {}",
// u32(type), functionName,
// lineNumber);
}