Works, need to remove dupicates, this will prevent infinite mutual recursion (later)

too
This commit is contained in:
Tristan B. Kildaire 2021-06-06 21:38:29 +02:00
parent 5f30ba1ac9
commit e418d98e73
1 changed files with 3 additions and 0 deletions

View File

@ -9,11 +9,14 @@ class A
{
static int jStatic;
static A aInstanceStatic;
static B bInstanceStatic;
B bInstance;
int jInstance;
}
class B
{
static int kStatic;
}