summaryrefslogtreecommitdiff
path: root/tests/headers/issue-820-unused-template-param-in-alias.hpp
blob: ca5d8b9653947d6a4216f6a7c0a2be0f12deba89 (plain)
1
2
3
4
5
template<typename E, int N>
class Foo {
    typedef Foo<E, N> self_type;
    E mBar;
};