blob: cae19a12a37b8a4f8aa76b13afe04b82b2000940 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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'}}
}