summaryrefslogblamecommitdiff
path: root/test/crashtest04.cpp
blob: acfc090e8fed63051a2023d8e065aa5242432d81 (plain) (tree)





















                
class Test1;
class Test2;

class Test2
{
    int a;
    Test1 *ptr1;
};

class Test1
{
    Test2 *ptr;
    int a;
    float b;
};

void func()
{
    Test1 var1;
}