From: Jason Merrill Date: Tue, 5 Jun 2018 11:27:12 +0000 (-0400) Subject: PR c++/85731 - wrong error with qualified-id in template. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=066c4268db267ef6d88498b001b143db404e495e;p=gcc.git PR c++/85731 - wrong error with qualified-id in template. * semantics.c (finish_qualified_id_expr): build_qualified_name for unbound names in the current class. From-SVN: r261196 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index c07371ee3a6..f4fa21a7a97 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2018-06-05 Jason Merrill + + PR c++/85731 - wrong error with qualified-id in template. + * semantics.c (finish_qualified_id_expr): build_qualified_name + for unbound names in the current class. + 2018-06-04 Jason Merrill PR c++/61806 - missed SFINAE with partial specialization. diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c index e00331a3ea4..a3426623385 100644 --- a/gcc/cp/semantics.c +++ b/gcc/cp/semantics.c @@ -2098,6 +2098,8 @@ finish_qualified_id_expr (tree qualifying_class, non-type template argument handling. */ if (processing_template_decl && (!currently_open_class (qualifying_class) + || TREE_CODE (expr) == IDENTIFIER_NODE + || TREE_CODE (expr) == TEMPLATE_ID_EXPR || TREE_CODE (expr) == BIT_NOT_EXPR)) expr = build_qualified_name (TREE_TYPE (expr), qualifying_class, expr, diff --git a/gcc/testsuite/g++.dg/template/qualified-id7.C b/gcc/testsuite/g++.dg/template/qualified-id7.C new file mode 100644 index 00000000000..fd952f6fbcf --- /dev/null +++ b/gcc/testsuite/g++.dg/template/qualified-id7.C @@ -0,0 +1,15 @@ +// PR c++/85731 +// { dg-do compile { target c++11 } } + + template + struct Outer { + struct Inner; + template static void f(); + }; + + template + struct Outer::Inner { + decltype(Outer::f<42>()) f(); + }; + + int main() { Outer::Inner().f(); }