You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is impossible to declare pointers to generic types, .NET 7.3
public struct Unmanaged<T> where T: unmanaged { }
public unsafe struct SomeCoolAndSexyStruct<T> where T: unmanaged
{
public Unmanaged<T>* _pointer; //Not allowed
}
Copied from original issue: dotnet/coreclr#18547
dzmitry-lahoda and hypeartistdzmitry-lahoda and hypeartist