blob: 55f959de0f027d426ff1e1095ac6f05e2c433f8e [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
// PR4103 : Make sure we don't get a bogus unused expression warning
class APInt {
char foo;
};
class APSInt : public APInt {
char bar;
public:
APSInt &operator=(const APSInt &RHS);
};
APSInt& APSInt::operator=(const APSInt &RHS) {
APInt::operator=(RHS);
return *this;
}