https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103968
--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The releases/gcc-11 branch has been updated by Jason Merrill <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:97390a9914672f5ce73c169b3ae7fd4bba25c2fe commit r11-9704-g97390a9914672f5ce73c169b3ae7fd4bba25c2fe Author: Jason Merrill <ja...@redhat.com> Date: Sun Mar 27 00:28:30 2022 -0400 c++: member alias declaration [PR103968] Here, we were wrongly thinking that (const Options&)Widget<T>::c_options is not value-dependent because neither the type nor the (value of) c_options are dependent, but since we're binding it to a reference we also need to consider that it has a value-dependent address. PR c++/103968 gcc/cp/ChangeLog: * pt.c (value_dependent_expression_p): Check has_value_dependent_address for conversion to reference. gcc/testsuite/ChangeLog: * g++.dg/cpp0x/alias-decl-mem1.C: New test.