Updated module visibility import visibility. Fixes to @local

This commit is contained in:
Christoffer Lerno
2023-02-15 09:47:51 +01:00
parent 4519eebe4d
commit 818396b6f3
25 changed files with 149 additions and 150 deletions

View File

@@ -15,7 +15,7 @@ fn int Bar.get2(Bar* f) => f.x;
fn int Bar.get3(Bar* f) @local => f.x;
module abc;
import private test;
import test @public;
struct Bar
{