blob: 3be2e652502fa10675a9389875ec8a7d10fdb2cd [file] [log] [blame]
// PR c++/23839
class C
{
int i;
public:
C(int j) : i(j) { }
operator int() { return i; }
};
C f (register C x)
{
return x + 31;
}