mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-05 15:56:08 +00:00

- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
29 lines
731 B
C++
29 lines
731 B
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
|
|
|
|
|