From ecb99e55e768f636647083e2a021d63a2f4259bd Mon Sep 17 00:00:00 2001 From: josh11b <15258583+josh11b@users.noreply.github.com> Date: Thu, 17 Apr 2025 15:48:37 -0700 Subject: [PATCH] `definitions_required` -> `definitions_required_by_decl` in toolchain/check/check_unit.cpp (#5329) Updates message to reflect changes in #5090 . --------- Co-authored-by: Josh L --- toolchain/check/check_unit.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toolchain/check/check_unit.cpp b/toolchain/check/check_unit.cpp index f4a805ff2b99..6f2908f28072 100644 --- a/toolchain/check/check_unit.cpp +++ b/toolchain/check/check_unit.cpp @@ -477,7 +477,8 @@ auto CheckUnit::CheckRequiredDefinitions() -> void { CARBON_FATAL("TODO: Support interfaces in DiagnoseMissingDefinitions"); } default: { - CARBON_FATAL("Unexpected inst in definitions_required: {0}", decl_inst); + CARBON_FATAL("Unexpected inst in definitions_required_by_decl: {0}", + decl_inst); } } }