https://bugs.llvm.org/show_bug.cgi?id=42662
Bug ID: 42662
Summary: No completion involving templated using in template
class
Product: clang
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: enhancement
Priority: P
Component: libclang
Assignee: unassignedclangb...@nondot.org
Reporter: nikolai.kos...@qt.io
CC: kli...@google.com, llvm-bugs@lists.llvm.org,
richard-l...@metafoo.co.uk
% echo $T /tmp/reproducer-template.cpp
% cat -n $T
1 #include <vector>
2
3 template<typename real = double>
4 class TestClass {
5 public:
6 template<typename T>
7 using ArrayType = std::vector<T>;
8 private:
9 ArrayType<real> testMember;
10 public:
11
12 void test() {
13 testMember.
14 }
15
16 };
% ./bin/clang -fsyntax-only -Xclang -code-completion-at -Xclang $T:13:20 $T
--> No completion items.
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs