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
This code causes a stack overflow in the TypeReferenceFinder:
module bmp;
struct BMPInfoV3
{
int width;
int height;
}
struct BMPInfoV4
{
BMPInfoV3 base;
alias base this;
}
struct BMPInfoV5
{
BMPInfoV4 base;
alias base this;
}