aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/tempinst1.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.jason/tempinst1.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.jason/tempinst1.C21
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/tempinst1.C b/gcc/testsuite/g++.old-deja/g++.jason/tempinst1.C
new file mode 100644
index 00000000000..2efcf241bf4
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.jason/tempinst1.C
@@ -0,0 +1,21 @@
+// Bug: g++ fails to instantiate operator<<.
+// Build don't run:
+// Special g++ Options: -g
+
+struct ostream {
+ ostream& operator<< (const char *) { return *this; };
+};
+
+template <class T> class foo {
+ friend ostream& operator<<(ostream&, foo<T>&);
+};
+
+template <class T> ostream& operator<< (ostream& ios, foo<T>&obj) { };
+
+int main()
+{
+ ostream cout;
+ foo<int> foo_obj;
+ cout << foo_obj; // causes linker error
+ return 0;
+}