PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / overload / defarg11.C
blob26fac6ebe124e787141cc32cec5b2a007769893c
1 // PR c++/78369
2 // { dg-do compile { target c++11 } }
4 struct A { };
5 inline void f(struct A a = {})  {}
7 int main()
9   f();
10   return 0;