//===----------------------------------------------------------------------===// // // 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>> // multimap(InputIterator, InputIterator, // Compare = Compare(), Allocator = Allocator()) // -> multimap, Compare, Allocator>; // template, class Allocator = allocator> // multimap(initializer_list, Compare = Compare(), Allocator = Allocator()) // -> multimap; // template // multimap(InputIterator, InputIterator, Allocator) // -> multimap, less>, Allocator>; // template // multimap(initializer_list, Allocator) // -> multimap, Allocator>; #include // INT_MAX #include #include #include struct NotAnAllocator { friend bool operator<(NotAnAllocator, NotAnAllocator) { return false; } }; using P = std::pair; using PC = std::pair; int main(int, char**) { { // cannot deduce Key and T from nothing std::multimap m; // expected-error-re{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // cannot deduce Key and T from just (Compare) std::multimap m(std::less{}); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // cannot deduce Key and T from just (Compare, Allocator) std::multimap m(std::less{}, std::allocator{}); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // cannot deduce Key and T from just (Allocator) std::multimap m(std::allocator{}); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // refuse to rebind the allocator if Allocator::value_type is not exactly what we expect const P arr[] = { {1,1L}, {2,2L}, {3,3L} }; std::multimap m(arr, arr + 3, std::allocator

()); // expected-error-re@map:* {{static assertion failed{{( due to requirement '.*')?}}{{.*}}Allocator::value_type must be same type as value_type}} } { // cannot convert from some arbitrary unrelated type NotAnAllocator a; std::multimap m(a); // expected-error-re{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // cannot deduce that the inner braced things should be std::pair and not something else std::multimap m{ {1,1L}, {2,2L}, {3,3L} }; // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // cannot deduce that the inner braced things should be std::pair and not something else std::multimap m({ {1,1L}, {2,2L}, {3,3L} }, std::less()); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // cannot deduce that the inner braced things should be std::pair and not something else std::multimap m({ {1,1L}, {2,2L}, {3,3L} }, std::less(), std::allocator()); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // cannot deduce that the inner braced things should be std::pair and not something else std::multimap m({ {1,1L}, {2,2L}, {3,3L} }, std::allocator()); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // since we have parens, not braces, this deliberately does not find the initializer_list constructor std::multimap m(P{1,1L}); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } { // since we have parens, not braces, this deliberately does not find the initializer_list constructor std::multimap m(PC{1,1L}); // expected-error-re@-1{{no viable constructor or deduction guide for deduction of template arguments of '{{(std::)?}}multimap'}} } return 0; }