c++: static memfn from non-dependent base [PR101078]
authorJason Merrill <jason@redhat.com>
Wed, 16 Jun 2021 20:09:59 +0000 (16:09 -0400)
committerJason Merrill <jason@redhat.com>
Wed, 16 Jun 2021 21:28:36 +0000 (17:28 -0400)
commit6816a44dfe1b5fa9414490a18a4aa723b6f38f18
treecf3fb47eb10171c34128f45e48f2731c3e57201d
parentcfe0a2ec26867b290eb84af00317e60f8b67455c
c++: static memfn from non-dependent base [PR101078]

After my patch for PR91706, or before that with the qualified call,
tsubst_baselink returned a BASELINK with BASELINK_BINFO indicating a base of
a still-dependent derived class.  We need to look up the relevant base binfo
in the substituted class.

PR c++/101078
PR c++/91706

gcc/cp/ChangeLog:

* pt.c (tsubst_baselink): Update binfos in non-dependent case.

gcc/testsuite/ChangeLog:

* g++.dg/template/access39.C: New test.
gcc/cp/pt.c
gcc/testsuite/g++.dg/template/access39.C [new file with mode: 0644]