Files
clice/tests/Support/Reflection.cpp
2024-07-05 23:32:40 +08:00

12 lines
159 B
C++

#include <Support/Reflection.h>
namespace {
struct Point {
int x;
int y;
};
static_assert(clice::impl::member_count<Point>() == 2);
} // namespace