: 11.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: adr26__gcc at nunsway dot co.uk
Target Milestone: ---
Consider the following code:
#include
class Bar
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98524
--- Comment #1 from Andrew Rogers ---
Apologies for the fat-fingering when copying in the code which triggers this
condition!
The top of this bug report should read -
Consider:
template void (*TF)();
template void (*TF)(int);
!!!
Andrew
: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: adr26__gcc at nunsway dot co.uk
Target Milestone: ---
Consider:
template void (*TF)(int);
template void (*TF)(int);
Per [temp.explicit]/6
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: adr26__gcc at nunsway dot co.uk
Target Milestone: ---
template struct Template_Class;
struct Other_Struct
{
template friend struct Template_Class;
};
template