OSDN Git Service

* g++.old-deja/g++.pt/overload5.C: New test; initialize variable
authoroliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 4 Oct 1998 15:31:58 +0000 (15:31 +0000)
committeroliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 4 Oct 1998 15:31:58 +0000 (15:31 +0000)
  with pointer to template function, for which no argument deduction
  is possible
* g++.old-deja/g++.pt/overload4.C: New test; passing pointer to
specialization of template function as argument to template
function
* g++.old-deja/g++.other/access2.C: New test; Inner class
shouldn't have privileged access to Outer's names

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22818 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.other/access2.C [new file with mode: 0644]
gcc/testsuite/g++.old-deja/g++.pt/overload4.C [new file with mode: 0644]
gcc/testsuite/g++.old-deja/g++.pt/overload5.C [new file with mode: 0644]

index eea6d0c..b41d7ff 100644 (file)
@@ -1,3 +1,16 @@
+1998-10-04  Alexandre Oliva  <oliva@dcc.unicamp.br>
+
+       * g++.old-deja/g++.pt/overload5.C: New test; initialize variable
+       with pointer to template function, for which no argument deduction
+       is possible
+
+       * g++.old-deja/g++.pt/overload4.C: New test; passing pointer to
+       specialization of template function as argument to template
+       function
+
+       * g++.old-deja/g++.other/access2.C: New test; Inner class
+       shouldn't have privileged access to Outer's names
+
 1998-10-03  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
        * g++.old-deja/g++.pt/friend34.C: New test; name injection of
diff --git a/gcc/testsuite/g++.old-deja/g++.other/access2.C b/gcc/testsuite/g++.old-deja/g++.other/access2.C
new file mode 100644 (file)
index 0000000..b981f2f
--- /dev/null
@@ -0,0 +1,12 @@
+// Build don't link:
+// Based on a test-case in the Standard, submitted by several people
+
+class Outer {
+  typedef int T;
+  class Inner {
+    T i; // ERROR - not accessible - XFAIL *-*-*
+    void f() {
+      T j; // ERROR - not accessible - XFAIL *-*-*
+    }
+  };
+};
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/overload4.C b/gcc/testsuite/g++.old-deja/g++.pt/overload4.C
new file mode 100644 (file)
index 0000000..78e271b
--- /dev/null
@@ -0,0 +1,12 @@
+// Build don't link:
+
+template <class T> void foo(T);
+
+template <class T> void bar(void (*)(T), T);
+
+void baz() {
+  bar<int>(foo, 1);
+  bar(foo<int>, 1); // explicit args for foo don't help - XFAIL *-*-*
+  bar<int>(foo<int>, 1); // not even here - XFAIL *-*-*
+  bar(foo, 1); // ICE - XFAIL *-*-*
+}
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/overload5.C b/gcc/testsuite/g++.old-deja/g++.pt/overload5.C
new file mode 100644 (file)
index 0000000..f705c24
--- /dev/null
@@ -0,0 +1,6 @@
+// Build don't link:
+
+template <class T> void foo();
+
+void (*bar)() = foo<void>;
+void (*baz)() = foo; // ERROR - can't deduce T - XFAIL *-*-*