mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
16 lines
198 B
Plaintext
16 lines
198 B
Plaintext
// #file: file1.c3
|
|
module baz;
|
|
import bar;
|
|
|
|
fn void runBar()
|
|
{
|
|
bar::notVisible(); // #error: 'bar::notVisible' is '@private'
|
|
}
|
|
|
|
// #file: file2.c3
|
|
module bar;
|
|
|
|
fn void notVisible()
|
|
@private{
|
|
|
|
} |