summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/template-param-usage-4.hpp
blob: 0415d69210010dade5ae30267cc607f682536b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
// bindgen-flags: -- -std=c++14

template <typename T>
class UsesTemplateParameter {
    T t;

    template <typename U>
    class DoesNotUseTemplateParameters {
        int x;
    };
};