1template <typename A1>
2void monk2 (A1) {}
3
4unsigned int strlen (const char*);
5
6void monk ()
7{
8  monk2 (strlen (""));
9}
10