From e8f7a9360281e08f078ed7001f31f24a1d132d4d Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Sun, 6 Jun 2021 16:05:27 +0200 Subject: [PATCH] Updated test case for basic dependance --- source/tlang/testing/type_check1.t | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/source/tlang/testing/type_check1.t b/source/tlang/testing/type_check1.t index e1f745af..8c2693b7 100644 --- a/source/tlang/testing/type_check1.t +++ b/source/tlang/testing/type_check1.t @@ -2,12 +2,11 @@ module typeChecking1; class A { - A aInstance; - B bInstance; + static A aInstance; + static B bInstance; } class B { - A aInstance; - B bInstance; + static B bInstance; } \ No newline at end of file