From ae789c9114e40c73bdb64e609f182b117cd3b51b Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Sat, 15 Oct 2022 21:00:59 +0200 Subject: [PATCH] Increased complexity of test case --- source/tlang/testing/simple_class_ref_static.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/tlang/testing/simple_class_ref_static.t b/source/tlang/testing/simple_class_ref_static.t index c7405c60..623c1e9e 100644 --- a/source/tlang/testing/simple_class_ref_static.t +++ b/source/tlang/testing/simple_class_ref_static.t @@ -2,12 +2,12 @@ module simple_class_ref; class A { - static int aVal = 55; + static int aVal = 55+6; } class TestClass { - static int x = 2; + static int x = 2+1; static A y; static class P