blob: 8f95c52a595f07361ec0c78f638346de69481f92 [file] [log] [blame]
#include "base.h"
class Foo : public FooNS
{
public:
Foo();
// Deliberately defined by hand.
Foo &operator=(const Foo &rhs) {
a = rhs.a;
return *this;
}
char baz() override;
int a;
};
extern Foo foo1;
extern Foo foo2;