When I try to print a local variable in LLDB, e.g. with po foo, and there's a function with the same name, I get this message:
error: reference to 'foo' is ambiguous
candidate found by name lookup is 'foo'
candidate found by name lookup is 'some_module::some_struct::{{impl}}::foo'
When I try to print a local variable in LLDB, e.g. with
po foo, and there's a function with the same name, I get this message: