16 lines
284 B
Plaintext
16 lines
284 B
Plaintext
// pos_rename — control with an unrelated parameter name. The file-scope
|
|
// import remains visible in probe. Both stages build and run 42.
|
|
|
|
package main;
|
|
|
|
import shadowmod;
|
|
|
|
fn probe(s: str) i32 = {
|
|
let _ = s;
|
|
return shadowmod.say();
|
|
};
|
|
|
|
fn main() i32 = {
|
|
return probe("hi");
|
|
};
|