testsuite: fix c23-constexpr-2a.c test to use dg-do run
[official-gcc.git] / gcc / testsuite / g++.dg / template / pr84694.C
blobba74560c14d6b8087602fc76872d3d936d3e8768
1 // PR c++84694 ICE on friend decl
2 template<typename>
3 struct a {
4   template<int ()> void b();
5   friend void b<0>(); // ICEd with useless friend decl
6 };