1 class S
2 {
3   class priv_type;
4   priv_type* priv;
5 
6   friend int public_function(S*);
7 };
8 
9 int public_function(S*);
10