//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14 // // template>, // class Allocator = allocator>> // set(InputIterator, InputIterator, // Compare = Compare(), Allocator = Allocator()) // -> set, Compare, Allocator>; // template, // class Allocator = allocator> // set(initializer_list, Compare = Compare(), Allocator = Allocator()) // -> set; // template // set(InputIterator, InputIterator, Allocator) // -> set, // less>, Allocator>; // template // set(initializer_list, Allocator) // -> set, Allocator>; #include #include #include struct NotAnAllocator { friend bool operator<(NotAnAllocator, NotAnAllocator) { return false; } }; int main(int, char **) { { // cannot deduce Key from nothing std::set s; // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}set'}} } { // cannot deduce Key from just (Compare) std::set s(std::less{}); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}set'}} } { // cannot deduce Key from just (Compare, Allocator) std::set s(std::less{}, std::allocator{}); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}set'}} } { // cannot deduce Key from just (Allocator) std::set s(std::allocator{}); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}set'}} } { // since we have parens, not braces, this deliberately does not find the // initializer_list constructor NotAnAllocator a; std::set s(a); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}set'}} } return 0; }