blob: bb7ebccb8b587763087a4a153bc69cde08a0978f [file] [log] [blame]
// PR c++/23842
struct S;
extern S *p;
template <class T> int f(T*, int y = ((T*)p)->x) {
return y;
}
struct S {
private:
int x;
template <class U> friend int f(U*, int);
};
int g() {
return f(p);
}