Added new test case for use in type_checking

This commit is contained in:
Tristan B. Kildaire 2021-06-06 15:59:01 +02:00
parent 70623ecd4a
commit 6de8e49a1f
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
module typeChecking1;
class A
{
A aInstance;
B bInstance;
}
class B
{
A aInstance;
B bInstance;
}