1// purposefully conflicting function with main source file 2// but it's private so it should be OK 3fn privateFunction() bool { 4 return false; 5} 6 7pub fn printText() bool { 8 return privateFunction(); 9} 10 11pub var saw_foo_function = false; 12pub fn foo_function() void { 13 saw_foo_function = true; 14} 15