- 
    Bug 
- 
    Resolution: Done
- 
     Not Evaluated Not Evaluated
- 
    Qt Creator 3.5.0-rc1
- 
    None
- 
        d327a110300d5498fbadba3f363d117cd3a3518
struct Foo
{
    virtual ~Foo() {}
    int A;
    int z;
};
int main()
{
    Foo foo;
    return 0; // Break here
}
The order is supposed to be "[vptr], A, z". Instead, it is "A, [vptr], z"