When I\'m running a unit test and want to debug something, I set a breakpoint and type for instance \"po myVariable\". The response I get from LLDB is:
error: Co
You are likely getting this error because you are setting a breakpoint in another project/framework/module.
Instead of po world, the quickest solution is to use the following command:
po world
fr v world