re PR c++/89387 (ICE in maybe_generic_this_capture at gcc/cp/lambda.c:945 since r268851)
PR c++/89387 * lambda.c (maybe_generic_this_capture): Don't check DECL_NONSTATIC_MEMBER_FUNCTION_P on USING_DECLs. * g++.dg/cpp0x/lambda/lambda-89387.C: New test. From-SVN: r269009
This commit is contained in:
parent
50aaebab94
commit
d5fe39d47c
4 changed files with 20 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
|||
2019-02-19 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/89387
|
||||
* lambda.c (maybe_generic_this_capture): Don't check
|
||||
DECL_NONSTATIC_MEMBER_FUNCTION_P on USING_DECLs.
|
||||
|
||||
PR c++/89391
|
||||
* typeck.c (build_reinterpret_cast_1): Don't handle void to
|
||||
&& conversion go through build_target_expr_with_type.
|
||||
|
|
|
@ -941,7 +941,8 @@ maybe_generic_this_capture (tree object, tree fns)
|
|||
fns = TREE_OPERAND (fns, 0);
|
||||
|
||||
for (lkp_iterator iter (fns); iter; ++iter)
|
||||
if ((!id_expr || TREE_CODE (*iter) == TEMPLATE_DECL)
|
||||
if (((!id_expr && TREE_CODE (*iter) != USING_DECL)
|
||||
|| TREE_CODE (*iter) == TEMPLATE_DECL)
|
||||
&& DECL_NONSTATIC_MEMBER_FUNCTION_P (*iter))
|
||||
{
|
||||
/* Found a non-static member. Capture this. */
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
2019-02-19 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/89387
|
||||
* g++.dg/cpp0x/lambda/lambda-89387.C: New test.
|
||||
|
||||
PR c++/89391
|
||||
* g++.dg/cpp0x/reinterpret_cast2.C: New test.
|
||||
|
||||
|
|
11
gcc/testsuite/g++.dg/cpp0x/lambda/lambda-89387.C
Normal file
11
gcc/testsuite/g++.dg/cpp0x/lambda/lambda-89387.C
Normal file
|
@ -0,0 +1,11 @@
|
|||
// PR c++/89387
|
||||
// { dg-do compile { target c++11 } }
|
||||
|
||||
template <template <typename, typename> class T>
|
||||
struct S {
|
||||
using A = int;
|
||||
using B = T<unsigned, A>;
|
||||
using B::foo;
|
||||
void bar () { [&] { foo (); }; }
|
||||
void foo ();
|
||||
};
|
Loading…
Add table
Reference in a new issue