summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/issue-358.hpp
blob: b14521b73b4f6334bcfc8afe8d943ab9d366dcd0 (plain)
1
2
3
4
5
6
7
8
// bindgen-flags: -- -std=c++11
namespace JS {
template <typename> class PersistentRooted;
}
template <typename> class a { a *b; };
namespace JS {
template <typename c> class PersistentRooted : a<PersistentRooted<c>> {};
}