blob: 64d8d59ce2184f75f7db3287f9b32dc5b1e36d3e [file] [log] [blame]
// Build don't link:
// GROUPS passed old-abort
class Rational {
public:
Rational(int v): value(v)
{ }
int value;
};
typedef Rational __Rational;
extern int operator>(const Rational&, const Rational&);
class V {
public:
class Rational {
public:
static int x(const __Rational& value);
};
};
int
V::Rational::x(const __Rational& value)
{
return value > 0;
}