mirror of
https://github.com/BlackMATov/meta.hpp.git
synced 2025-12-16 22:17:02 +07:00
25 lines
719 B
C++
25 lines
719 B
C++
/*******************************************************************************
|
|
* This file is part of the "https://github.com/blackmatov/meta.hpp"
|
|
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
|
* Copyright (C) 2021-2024, by Matvey Cherevko (blackmatov@gmail.com)
|
|
******************************************************************************/
|
|
|
|
#include <meta.hpp/meta_all.hpp>
|
|
#include <doctest/doctest.h>
|
|
|
|
namespace
|
|
{
|
|
template < typename Derived >
|
|
struct base {};
|
|
|
|
struct derived : base<derived> {
|
|
META_HPP_ENABLE_BASE_INFO(base<derived>)
|
|
};
|
|
}
|
|
|
|
TEST_CASE("meta/meta_issues/random/9") {
|
|
namespace meta = meta_hpp;
|
|
|
|
// meta::resolve_type<derived>();
|
|
}
|