xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/strlen1.C (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 template <typename A1>
monk2(A1)2 void monk2 (A1) {}
3 
4 unsigned int strlen (const char*);
5 
monk()6 void monk ()
7 {
8   monk2 (strlen (""));
9 }
10