Working on wrapping some C++ code using the new Swift interop, trying to call one of the C++ methods it says it doesn't exists even though it does. XCode shows these notes:
C++ method asBare that returns a value of type ObjectPtr<A> is unavaliable
C++ method asBare may return an interior pointer
The method returns a heap-allocated object so I'm not sure what is confusing the compiler here to refuse to make it available.