Fixed test case simple1_oop.t

This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-20 16:10:13 +02:00
parent 4f899c69e2
commit d35d651b0d
1 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,6 @@ module oopTest;
Person p1 = new Person();
Person p2;
p1();
discard 1+1;
discard p1;
discard p1();
@ -20,4 +19,4 @@ class Person
}
}
}