blob: b705af0a551ab976bf16a62827838621c82a6444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <forstio/test/suite.hpp>
#include "../c++/abstract/schema.hpp"
namespace {
namespace ts {
using namespace kel::lbm::sch;
using TPtr = Ptr<UInt16>;
using TVal = UInt16;
}
SAW_TEST("Abstract/Schema/Ptr"){
using namespace kel::lbm;
// static_assert(std::is_same_v<typename schema_decay<ts::TPtr>::Schema, ts::TVal>, "schema decay failed");
}
}
|