aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.brendan/crash46.C
blob: 53cbd1027f6378dcdeef57d7d8b2c5dd5a86550e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// { dg-do assemble  }
// 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;
}