From bf4e4138f7d83f0ba7edb4cf5a82e134cf9fe062 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 15 Apr 2024 11:37:36 +0200 Subject: [PATCH] Resolution (unittests) - Fixed module name --- source/tlang/compiler/typecheck/resolution.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tlang/compiler/typecheck/resolution.d b/source/tlang/compiler/typecheck/resolution.d index cfc1794b..1a1e45c8 100644 --- a/source/tlang/compiler/typecheck/resolution.d +++ b/source/tlang/compiler/typecheck/resolution.d @@ -919,7 +919,7 @@ version(unittest) import tlang.compiler.lexer.core; import tlang.compiler.lexer.kinds.basic : BasicLexer; import tlang.compiler.typecheck.core; - import misc.exceptions : TError; + import tlang.misc.exceptions : TError; } /**