Removed other stuff that should not be tested now

This commit is contained in:
Tristan B. Kildaire 2021-06-06 18:57:36 +02:00
parent 343564f287
commit 257ff39b7d
1 changed files with 6 additions and 12 deletions

View File

@ -1,22 +1,16 @@
module typeChecking1;
A aInstance;
B aInstance;
int jNumber;
class A
{
static A aInstance;
static typeChecking1.B bInstance;
static C cInstance;
class C
{
static B bInstance;
}
}
class B
{
static A.C cInstance;
static B bInstance;
}
}