Updated test case

This commit is contained in:
Tristan B. Velloza Kildaire 2021-06-09 12:47:53 +02:00
parent 55b256565c
commit 818e385889
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
module oopTest;
Person p1 = new Person();
Person p2;
class Person
{
static int i;
static int varStatic;
int varInstance;
}