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
};