- cppast version: latest one
- parser:
libclang_parser - clang version: 13.0.0
Explanation of the error.
Input:
template <typename T>
classTest {
public:Test(const Test&) = delete;
};The parameter's cpp_reference_type.referee()->kind() is giving unexposed_t.
Adding explicit template parameters solves the issue.
template <typename T>
classTest {
public:Test(const Test<T>&) = delete;
};Possible bug? Or limitation?
libclang_parserExplanation of the error.
Input:
The parameter's
cpp_reference_type.referee()->kind()is givingunexposed_t.Adding explicit template parameters solves the issue.
Possible bug? Or limitation?