summaryrefslogtreecommitdiff
path: root/tests/headers/replace_use.hpp
blob: de44eb19cc0c1fe2453ca4f64a2d7f8c8998b33a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
template<typename T>
struct nsTArray {
  int x;
};
/**
 * <div rustbindgen replaces="nsTArray"></div>
 */
template<typename T>
struct nsTArray_Simple {
  unsigned int y;
};

struct Test {
  nsTArray<long> a;
};