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/virtual_functions.cpp
2026-01-04 11:26:11 +03:00

21 lines
476 B
C++

// Copyright (c) 2018-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)
#include <boost/pfr/tuple_size.hpp>
struct test_with_virtual {
int i = 0;
char c = 'a';
double d = 3.4;
float f = 3.5f;
virtual double sum() const { return i + d + c + f; }
};
int main() {
return boost::pfr::tuple_size<test_with_virtual>::value;
}