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