aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/local-fn1.C
blob: 88acd17d74166582a19f98f061e84e8245bff067 (plain)
1
2
3
4
5
6
7
8
// PR c++/60605

template <typename T = int>
struct Foo {
    void bar() {
        void bug();
    }
};