summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/size_t_template.hpp
blob: 6045c698b6d5cd26f0ebe3c0045cb4df010dd943 (plain)
1
2
3
4
5
6
7
8
template<typename T, unsigned long N>
class Array {
    T inner[N];
};

class C {
    Array<int, 3> arr;
};