]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
This commit was manufactured by cvs2svn to create branch
authorNo Author <no-author@gcc.gnu.org>
Sun, 1 Dec 2002 18:19:14 +0000 (18:19 +0000)
committerNo Author <no-author@gcc.gnu.org>
Sun, 1 Dec 2002 18:19:14 +0000 (18:19 +0000)
'gcc-3_2-branch'.

From-SVN: r59691

gcc/testsuite/g++.dg/template/strlen1.C [new file with mode: 0644]

diff --git a/gcc/testsuite/g++.dg/template/strlen1.C b/gcc/testsuite/g++.dg/template/strlen1.C
new file mode 100644 (file)
index 0000000..ddec51d
--- /dev/null
@@ -0,0 +1,9 @@
+template <typename A1>
+void monk2 (A1) {}
+
+unsigned int strlen (const char*);
+
+void monk ()
+{
+  monk2 (strlen (""));
+}