Recently encountered this in an SDK header: ``` HRESULT GetCachedPatternAs( [in] PATTERNID patternId, [in] REFIID riid, [out, iid_is(riid), retval] void** patternObject); ``` As Any would be supported if it wasn't the retval; there's no reason to not allow it as the return.
Recently encountered this in an SDK header:
As Any would be supported if it wasn't the retval; there's no reason to not allow it as the return.