Skip to content

Commit

Permalink
Test cases
Browse files Browse the repository at this point in the history
- Updated `b.t` and `c.t` in hopes of fixing them for the new access-modifier based testing
  • Loading branch information
deavmi committed May 5, 2024
1 parent b7ef4ae commit 8561fc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/tlang/testing/modules/b.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module b;

import a;

int doThing()
public int doThing()
{
int local = 0;

Expand Down
2 changes: 1 addition & 1 deletion source/tlang/testing/modules/niks/c.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module c;

import a;

void k()
public void k()
{
a.j = a.j + 2;
}

0 comments on commit 8561fc2

Please sign in to comment.