Skip to content

Clang type substitution for concepts is too eager #61811

@cjdb

Description

@cjdb

GCC test concepts4.C fails when it should pass. Apparently this part of temp.constr points out that the type substitution happens later than when we're applying it (cc @zygoloid in case I botched the explanation).

template <class T> struct A { static const int x = 42; };

template <class Ta> concept A42 = A<Ta>::x == 42;
template <class Tv> concept Void = __is_same_as(Tv, void);
template <class Tb, class Ub> concept A42b = Void<Tb> || A42<Ub>;
template <class Tc> concept R42c = A42b<Tc, Tc&>;

static_assert (R42c<void>);

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

Status

Done

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions