blob: ad324c9058183f917b7a350f7010892d011a759c [file] [log] [blame]
#include "length.h"
class Foo {
public:
A a;
};
class MyA : public A {
};
int main()
{
Foo f;
MyA a;
return length(a); // break here
}