From 6edcd7820c9b7b2f773c1a28ed900a99f2e2478c Mon Sep 17 00:00:00 2001 From: JohnnyMorganz Date: Mon, 28 Nov 2022 13:09:42 +0000 Subject: [PATCH] Update Analysis/src/TypeInfer.cpp Co-authored-by: vegorov-rbx <75688451+vegorov-rbx@users.noreply.github.com> --- Analysis/src/TypeInfer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Analysis/src/TypeInfer.cpp b/Analysis/src/TypeInfer.cpp index 9c0a38a1..0ca54e60 100644 --- a/Analysis/src/TypeInfer.cpp +++ b/Analysis/src/TypeInfer.cpp @@ -1732,7 +1732,7 @@ void TypeChecker::check(const ScopePtr& scope, const AstStatDeclareClass& declar // This class definition must have been `prototype()`d first. if (!binding) - ice("Not predeclared"); + ice("Class not predeclared"); TypeId classTy = binding->type; ClassTypeVar* ctv = getMutable(classTy);