mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 00:36:05 +00:00
72 lines
2.2 KiB
C++
72 lines
2.2 KiB
C++
// RUN: %clang_cc1 -fexperimental-new-constant-interpreter -fms-extensions -std=c++20 -verify=expected,both %s
|
|
// RUN: %clang_cc1 -std=c++20 -fms-extensions -verify=ref,both %s
|
|
|
|
namespace std {
|
|
typedef decltype(sizeof(int)) size_t;
|
|
template <class _E>
|
|
class initializer_list
|
|
{
|
|
const _E* __begin_;
|
|
size_t __size_;
|
|
|
|
initializer_list(const _E* __b, size_t __s)
|
|
: __begin_(__b),
|
|
__size_(__s)
|
|
{}
|
|
|
|
public:
|
|
typedef _E value_type;
|
|
typedef const _E& reference;
|
|
typedef const _E& const_reference;
|
|
typedef size_t size_type;
|
|
|
|
typedef const _E* iterator;
|
|
typedef const _E* const_iterator;
|
|
|
|
constexpr initializer_list() : __begin_(nullptr), __size_(0) {}
|
|
|
|
constexpr size_t size() const {return __size_;}
|
|
constexpr const _E* begin() const {return __begin_;}
|
|
constexpr const _E* end() const {return __begin_ + __size_;}
|
|
};
|
|
}
|
|
|
|
class Thing {
|
|
public:
|
|
int m = 12;
|
|
constexpr Thing(int m) : m(m) {}
|
|
constexpr bool operator==(const Thing& that) const {
|
|
return this->m == that.m;
|
|
}
|
|
};
|
|
|
|
constexpr bool is_contained(std::initializer_list<Thing> Set, const Thing &Element) {
|
|
return (*Set.begin() == Element);
|
|
}
|
|
|
|
constexpr int foo() {
|
|
const Thing a{12};
|
|
const Thing b{14};
|
|
return is_contained({a}, b);
|
|
}
|
|
|
|
static_assert(foo() == 0);
|
|
|
|
|
|
namespace rdar13395022 {
|
|
struct MoveOnly { // both-note {{candidate}}
|
|
MoveOnly(MoveOnly&&); // both-note 2{{copy constructor is implicitly deleted because}} both-note {{candidate}}
|
|
};
|
|
|
|
void test(MoveOnly mo) {
|
|
auto &&list1 = {mo}; // both-error {{call to implicitly-deleted copy constructor}} both-note {{in initialization of temporary of type 'std::initializer_list}}
|
|
MoveOnly (&&list2)[1] = {mo}; // both-error {{call to implicitly-deleted copy constructor}} both-note {{in initialization of temporary of type 'MoveOnly[1]'}}
|
|
std::initializer_list<MoveOnly> &&list3 = {};
|
|
MoveOnly (&&list4)[1] = {}; // both-error {{no matching constructor}}
|
|
// both-note@-1 {{in implicit initialization of array element 0 with omitted initializer}}
|
|
// both-note@-2 {{in initialization of temporary of type 'MoveOnly[1]' created to list-initialize this reference}}
|
|
}
|
|
}
|
|
|
|
|