10 lines
257 B
Plaintext
10 lines
257 B
Plaintext
// paramshadowmod/shadowmod — the sibling package used by the lexical
|
|
// import-shadowing fixtures. The exported function makes each pre-binding
|
|
// qualifier occurrence observable at runtime.
|
|
|
|
package shadowmod;
|
|
|
|
export fn say() i32 = {
|
|
return 42i32;
|
|
};
|