Can I return a value by ref without using lent ? for example inside an object i have a `seq[ref Player]`, and I want to make a `getPlayer` function that returns a `Player` by ref, but not a ref since I want to return it as const, can I do this: `proc getPlayer(): Player {.byRef.} = ...` because since i store refs, I cant use lent in my case, it's not a guaranteed path expression