8 lines
348 B
Plaintext
8 lines
348 B
Plaintext
// Reordered-source twin of ../modfn_coexist/main.ww. The distinct local name
|
|
// follows Go's import/package-scope collision rule while retaining the
|
|
// declaration/import installation-order check for a real file-scoped binding.
|
|
package main;
|
|
import aa;
|
|
fn localaa() i32 = { return 1; };
|
|
export fn main() i32 = { return localaa() + aa.helper(); };
|