blob: edfd12ef1a995be7f58221f122816340a5be1200 [file] [log] [blame]
// PRMS id: 5629
// Build don't link:
struct String { const char *x; };
class Pathname: public String { };
String
f(int i)
{
Pathname p;
String s;
return i ? p: s;
}