2
0
mirror of https://github.com/boostorg/pfr.git synced 2026-01-19 04:22:13 +00:00
Files
pfr/test/core/compile-fail/protected_fields.cpp
2023-01-07 01:48:39 +06:00

27 lines
557 B
C++

// Copyright (c) 2018-2022 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)
#include <boost/pfr/tuple_size.hpp>
class test_with_protected {
protected:
int i;
char c;
public:
double d;
float f;
};
int main() {
#ifndef __cpp_lib_is_aggregate
// TODO: No known way to detect protected fields
# error No known way to detect protected fields.
#endif
return boost::pfr::tuple_size<test_with_protected>::value;
}