summaryrefslogtreecommitdiff
path: root/tests/headers/nested-template-typedef.hpp
blob: 8c83de5bae118183d98676438cc32c45e7caeabb (plain)
1
2
3
4
5
6
7
8
template<typename T>
class Foo {
public:
    template<typename U>
    struct Bar {
        typedef Foo<U> FooU;
    };
};