PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / local-fn1.C
blob88acd17d74166582a19f98f061e84e8245bff067
1 // PR c++/60605
3 template <typename T = int>
4 struct Foo {
5     void bar() {
6         void bug();
7     }
8 };