//===----------------------------------------------------------------------===//
//
// 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
// <iterator>
// back_insert_iterator
// Make sure that the implicitly-generated CTAD works.
#include <iterator>
#include <string>
#include <vector>
#include "test_macros.h"
int main(int, char**) {
{
std::string s;
std::back_insert_iterator it(s);
ASSERT_SAME_TYPE(decltype(it), std::back_insert_iterator<std::string>);
}
{
std::vector<int> v;
std::back_insert_iterator it(v);
std::back_insert_iterator copy(it);
ASSERT_SAME_TYPE(decltype(it), std::back_insert_iterator<std::vector<int>>);
ASSERT_SAME_TYPE(decltype(copy), std::back_insert_iterator<std::vector<int>>);
}
return 0;
}