summaryrefslogtreecommitdiff
path: root/modules/core/tests
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-07-21 23:43:20 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-07-21 23:43:29 +0200
commit25a1c2485c5187c61a8efc9f5b62d4d942124d47 (patch)
tree1b5faa3f7a2dbc1558891eeda7b2cacd8a56fd0d /modules/core/tests
parent484fc61e2472c2a3752168221bd85510e9b7c53f (diff)
downloadlibs-lbm-dev.tar.gz
Danglingdev
Diffstat (limited to 'modules/core/tests')
-rw-r--r--modules/core/tests/schema.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/modules/core/tests/schema.cpp b/modules/core/tests/schema.cpp
new file mode 100644
index 0000000..b705af0
--- /dev/null
+++ b/modules/core/tests/schema.cpp
@@ -0,0 +1,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");
+}
+
+}