From d6c38eee348c7da6982ef2525b3017eecc9d8393 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Sun, 6 Jun 2021 17:44:16 +0200 Subject: [PATCH] Actully idk what I am doing, this is a weird mix of things. I should first focus on classes and static initializations. Then when a type is used of a class that should cause it to init --- source/tlang/testing/typecheck/basic_dependence_correct1.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/tlang/testing/typecheck/basic_dependence_correct1.t b/source/tlang/testing/typecheck/basic_dependence_correct1.t index e0b1f58..87affa2 100644 --- a/source/tlang/testing/typecheck/basic_dependence_correct1.t +++ b/source/tlang/testing/typecheck/basic_dependence_correct1.t @@ -6,7 +6,7 @@ class A static typeChecking1.B bInstance; static C cInstance; - static class C + class C { static B bInstance; } @@ -14,5 +14,6 @@ class A class B { + static A.C cInstance; static B bInstance; } \ No newline at end of file