]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR c++/54323 (Friend function declaration not correctly identified with CRTP ...
authorPaolo Carlini <paolo.carlini@oracle.com>
Thu, 4 Oct 2012 15:19:34 +0000 (15:19 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Thu, 4 Oct 2012 15:19:34 +0000 (15:19 +0000)
2012-10-04  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/54323
* g++.dg/cpp0x/pr54323.C: New.

From-SVN: r192083

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/pr54323.C [new file with mode: 0644]

index 6b6963efa28a0494682e82c8f3309804e03a4d45..306d277187a1fdeb4f2fd8f445fed911f98345ff 100644 (file)
@@ -1,3 +1,8 @@
+2012-10-04  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/54323
+       * g++.dg/cpp0x/pr54323.C: New.
+
 2012-10-04  Richard Guenther  <rguenther@suse.de>
 
        PR middle-end/54735
diff --git a/gcc/testsuite/g++.dg/cpp0x/pr54323.C b/gcc/testsuite/g++.dg/cpp0x/pr54323.C
new file mode 100644 (file)
index 0000000..71b6c71
--- /dev/null
@@ -0,0 +1,37 @@
+// PR c++/54323
+// { dg-do compile { target c++11 } }
+
+template<bool, typename T = void>
+struct enable_if { };
+
+template<typename T>
+struct enable_if<true, T>
+{ typedef T type; };
+
+template<template<typename> class CRTP, typename T>
+class Base
+{
+public:
+  template<template<typename> class CRTP0, typename T0, class>
+  friend int func(const Base<CRTP0, T0>& rhs);
+
+protected:
+  int n;
+};
+
+template<template<typename> class CRTP0, typename T0,
+        class = typename enable_if<true>::type>
+int func(const Base<CRTP0, T0>& rhs)
+{
+  return rhs.n;
+}
+
+template<typename T>
+class Derived : public Base<Derived, T> {};
+
+int main()
+{
+  Derived<int> x;
+  func(x);
+  return 0;
+}