================ @@ -0,0 +1,33 @@ +// Test is line- and column-sensitive. Run lines are below + +template <typename T> +class basic_vector { +public: + T x; + T y; +}; + +using my_vec = basic_vector<int>; + +class MyClass { + my_vec myVec; +}; + +struct OuterStruct { ---------------- QuietMisdreavus wrote:
The null `bases` problem was showing up when generating a single-symbol symbol graph for a forward declaration. The second `c-index-test` call is probing for `InnerStruct`, which was previously crashing. It might not need to be declared within another type; that's just how i saw it in the wild. https://github.com/llvm/llvm-project/pull/132297 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits