blob: fecace37af42ff80c62b001243d99a0de1e5acc2 [file] [log] [blame]
class A
{
public:
A (const A& ccref);
friend A const re (const A& v1); // ERROR -
};
A // const
re (const A& ref)
{ // ERROR - mismatched decls
return A (ref);
}