On Monday, 27 January 2025 at 19:48, Jason Merrill - jason at redhat.com
wrote:
>
> On 1/27/25 1:26 PM, Patrick Palka wrote:
>
> > On Wed, 1 Jan 2025, A J Ryan Solutions Ltd wrote:
> >
> > > Hi and happy new year, this patch is to fix a compiler seg-fault as
> > > encountered in the following ex
On 1/27/25 1:26 PM, Patrick Palka wrote:
On Wed, 1 Jan 2025, A J Ryan Solutions Ltd wrote:
Hi and happy new year, this patch is to fix a compiler seg-fault as encountered
in the following example:
Hi, thanks for the patch! Your fix makes sense to me, and I believe it
also fixes the testcase
On Wed, 1 Jan 2025, A J Ryan Solutions Ltd wrote:
> Hi and happy new year, this patch is to fix a compiler seg-fault as
> encountered in the following example:
Hi, thanks for the patch! Your fix makes sense to me, and I believe it
also fixes the testcases from PR102626 and at least some of its
Hi and happy new year, this patch is to fix a compiler seg-fault as encountered
in the following example:
template struct Class1{};
template class Class2;
template...Un> class Class2
{
public: void apply(){}
};
Class1 class1_bool;
Class1 class1_char;
int main()
{
Class2 class2;
cla