]> git.ipfire.org Git - thirdparty/gcc.git/commit
c++: Fix ICE with functional cast to reference in template [PR123044]
authorEgas Ribeiro <egas.g.ribeiro@tecnico.ulisboa.pt>
Thu, 11 Dec 2025 13:30:49 +0000 (13:30 +0000)
committerJason Merrill <jason@redhat.com>
Fri, 19 Dec 2025 11:13:44 +0000 (18:13 +0700)
commit93c0642bb54ee3205db666a47a06f87d6c50eff2
tree5fccb3fb2c6c6a34c41a16d879f0f9c2a4a4d382
parentd19b95ca96f2e10732007d9cd59e6430df8d0b2a
c++: Fix ICE with functional cast to reference in template [PR123044]

When processing a functional cast to a reference type in a template
context, build_functional_cast_1 wasn't calling convert_from_reference.
This left the expression with a reference type, which later triggered
an assertion in implicit_conversion from r15-6709 that expects
expression types to already be dereferenced.

In contrast, cp_build_c_cast already calls convert_from_reference on
the result in template contexts, so C-style casts like (R)x worked
correctly.

The fix makes functional casts consistent with C-style casts by
calling convert_from_reference before returning in the template
processing path.

PR c++/123044

gcc/cp/ChangeLog:

* typeck2.cc (build_functional_cast_1): Call convert_from_reference
on template CAST_EXPR to match C-style cast behavior.

gcc/testsuite/ChangeLog:

* g++.dg/template/implicit-func-cast.C: New test.

Signed-off-by: Egas Ribeiro <egas.g.ribeiro@tecnico.ulisboa.pt>
Reviewed-by: Jason Merrill <jason@redhat.com>
gcc/cp/typeck2.cc
gcc/testsuite/g++.dg/template/implicit-func-cast.C [new file with mode: 0644]