mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:50:51 +08:00
re PR c++/52875 (ADL failure + ICE in decltype)
2014-05-17 Paolo Carlini <paolo.carlini@oracle.com> PR c++/52875 * g++.dg/cpp0x/decltype58.C: New. From-SVN: r210562
This commit is contained in:
parent
b570458199
commit
9b8ac5d240
@ -1,3 +1,8 @@
|
||||
2014-05-17 Paolo Carlini <paolo.carlini@oracle.com>
|
||||
|
||||
PR c++/52875
|
||||
* g++.dg/cpp0x/decltype58.C: New.
|
||||
|
||||
2014-05-17 Marc Glisse <marc.glisse@inria.fr>
|
||||
|
||||
PR tree-optimization/61140
|
||||
|
24
gcc/testsuite/g++.dg/cpp0x/decltype58.C
Normal file
24
gcc/testsuite/g++.dg/cpp0x/decltype58.C
Normal file
@ -0,0 +1,24 @@
|
||||
// PR c++/52875
|
||||
// { dg-do compile { target c++11 } }
|
||||
|
||||
struct A
|
||||
{
|
||||
friend void swap(A&,A&) {}
|
||||
};
|
||||
|
||||
class B
|
||||
{
|
||||
A a;
|
||||
|
||||
template <class T>
|
||||
friend auto swap(T& x, T& y) -> decltype(swap(x.a,y.a))
|
||||
{
|
||||
swap(x.a,y.a);
|
||||
}
|
||||
};
|
||||
|
||||
int main()
|
||||
{
|
||||
B x, y;
|
||||
swap(x, y);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user