Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
pr84694.C
blob: ba74560c14d6b8087602fc76872d3d936d3e8768 [
file
] [
log
] [
blame
]
// PR c++84694 ICE on friend decl
template
<typename>
struct
a
{
template
<
int
()>
void
b
();
friend
void
b
<
0
>();
// ICEd with useless friend decl
};