llvm/libcxx/test/std/utilities/utility/pairs/pair.astuple/pairs.by.type1.verify.cpp

//===----------------------------------------------------------------------===//
//
// 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

#include <utility>
#include <complex>

void f() {
  typedef std::complex<float> cf;
  auto t1 = std::make_pair<int, double>(42, 3.4);
  (void)std::get<cf>(t1); // expected-error {{no matching function for call to 'get'}}
}