test cases

- Updated the `b.t` file
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-05 14:08:15 +02:00
parent 215f6e1b2a
commit ca57aff267
1 changed files with 9 additions and 1 deletions

View File

@ -2,7 +2,7 @@ module b;
import a;
int doThing()
public int doThing()
{
int local = 0;
@ -13,3 +13,11 @@ int doThing()
return local;
}
// You should NOT be able to see me
private int g;
private void nothing()
{
}