Actully idk what I am doing, this is a weird mix of things. I should first focus on classes and static initializations. Then when a type is used of a class that should cause it to init

This commit is contained in:
Tristan B. Kildaire 2021-06-06 17:44:16 +02:00
parent 7e8e4d6f56
commit d6c38eee34
1 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class A
static typeChecking1.B bInstance;
static C cInstance;
static class C
class C
{
static B bInstance;
}
@ -14,5 +14,6 @@ class A
class B
{
static A.C cInstance;
static B bInstance;
}