mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00

Summary: This is shorter, shouldn't be confusing (is consistent with how they're declared), and avoids messy cases that are printed as myclass<type-param-0-0>(int) in the case of partial specialization. Fixes part of https://github.com/clangd/clangd/issues/76 Reviewers: hokein, lh123 Subscribers: ilya-biryukov, kadircet, usaxena95, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D70307
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
namespace std {
|
|
template<typename T>
|
|
class allocator {
|
|
public:
|
|
void in_base();
|
|
};
|
|
|
|
template<typename T, typename Alloc = std::allocator<T> >
|
|
class vector : Alloc {
|
|
public:
|
|
void foo();
|
|
void stop();
|
|
};
|
|
template<typename Alloc> class vector<bool, Alloc>;
|
|
}
|
|
|
|
void f() {
|
|
std::vector<int> v;
|
|
v.foo();
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:18:8 %s -o - | FileCheck -check-prefix=CHECK-CC1 %s
|
|
// CHECK-CC1: allocator<<#typename T#>>
|
|
// CHECK-CC1-NEXT: vector<<#typename T#>{#, <#typename Alloc#>#}>
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:19:5 %s -o - | FileCheck -check-prefix=CHECK-CC2 %s
|
|
// CHECK-CC2: foo
|
|
// CHECK-CC2: in_base
|
|
// CHECK-CC2: stop
|
|
}
|
|
|
|
|
|
template <typename> struct X;
|
|
template <typename T> struct X<T*> { X(double); };
|
|
X<int*> x(42);
|
|
// RUN: %clang_cc1 -fsyntax-only -code-completion-at=%s:32:11 %s -o - | FileCheck -check-prefix=CHECK-CONSTRUCTOR %s
|
|
// CHECK-CONSTRUCTOR: OVERLOAD: X(<#double#>)
|
|
// (rather than X<type-parameter-0-0 *>(<#double#>)
|