mirror of
https://github.com/boostorg/pfr.git
synced 2026-01-19 04:22:13 +00:00
30 lines
622 B
C++
30 lines
622 B
C++
// Copyright (c) 2020-2026 Antony Polukhin
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
// Detection of variadic structured binding support
|
|
|
|
#include <type_traits>
|
|
#include <version>
|
|
|
|
#if !(__cpp_structured_bindings >= 202411L && __cpp_lib_forward_like >= 202207L)
|
|
#error Compiler does not support the required features
|
|
#endif
|
|
|
|
struct MyPair {
|
|
int first;
|
|
int second;
|
|
};
|
|
|
|
template <class T>
|
|
auto test() {
|
|
const auto& [...x] = T{};
|
|
return x...[0];
|
|
}
|
|
|
|
int main() {
|
|
return ::test<MyPair>();
|
|
}
|
|
|