diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2012-10-04 15:19:34 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2012-10-04 15:19:34 +0000 |
commit | c62b924434c30cc417df9c1f0bac770e653f0241 (patch) | |
tree | dbee5d28d74dff232862a91feae008292735f617 /gcc | |
parent | 244e2d9cd325af32ef126c0d59e8e75650f5654a (diff) | |
download | gcc-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/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp0x/pr54323.C | 37 |
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; +} |