Updated test case for basic dependance

This commit is contained in:
Tristan B. Kildaire 2021-06-06 16:05:27 +02:00
parent 6de8e49a1f
commit e8f7a93602
1 changed files with 3 additions and 4 deletions

View File

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