1// PR c++/60605
2
3template <typename T = int>
4struct Foo {
5    void bar() {
6        void bug();
7    }
8};
9