aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPaolo Carlini <paolo.carlini@oracle.com>2012-10-04 15:19:34 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2012-10-04 15:19:34 +0000
commitc62b924434c30cc417df9c1f0bac770e653f0241 (patch)
treedbee5d28d74dff232862a91feae008292735f617 /gcc
parent244e2d9cd325af32ef126c0d59e8e75650f5654a (diff)
downloadgcc-c62b924434c30cc417df9c1f0bac770e653f0241.zip
gcc-c62b924434c30cc417df9c1f0bac770e653f0241.tar.gz
gcc-c62b924434c30cc417df9c1f0bac770e653f0241.tar.bz2
re PR c++/54323 (Friend function declaration not correctly identified with CRTP + enable_if)
2012-10-04 Paolo Carlini <paolo.carlini@oracle.com> PR c++/54323 * g++.dg/cpp0x/pr54323.C: New. From-SVN: r192083
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.dg/cpp0x/pr54323.C37
2 files changed, 42 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 6b6963e..306d277 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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
index 0000000..71b6c71
--- /dev/null
+++ b/gcc/testsuite/g++.dg/cpp0x/pr54323.C
@@ -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;
+}