/*
19. Modify FriendInjection.cpp to add a definition for the
friend function and to call the function inside main( ).
*/
#include<iostream>
using namespace std;
namespace Me {
class Us {
friend void you();
};
}
int main() {
using namespace Me;
you();
}
void you() {
cout << "you" << endl;
}