Increased complexity of test case

This commit is contained in:
Tristan B. Velloza Kildaire 2022-10-15 21:00:59 +02:00
parent 0c94ece070
commit ae789c9114
1 changed files with 2 additions and 2 deletions

View File

@ -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