gcc, libcpp: Add warning switch for "#pragma once in main file" [PR89808]
[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 };