From 35635f5514a9f702b5606146bf9ff4494030ff8f Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Fri, 16 Feb 2024 15:50:40 +0100 Subject: core,tools,codec: Moving towards lang tooling --- modules/tools/tests/c_iface.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'modules/tools/tests') diff --git a/modules/tools/tests/c_iface.cpp b/modules/tools/tests/c_iface.cpp index 01f1106..4f1b744 100644 --- a/modules/tools/tests/c_iface.cpp +++ b/modules/tools/tests/c_iface.cpp @@ -14,6 +14,14 @@ using TestStruct = Struct< Member >; +using TestArray = Array< + Int64, 1 +>; + +using TestStructArray = Struct< + Member +>; + using TestEmptyInterface = Interface<>; using TestOneFunctionInterface = Interface< @@ -23,6 +31,10 @@ using TestOneFunctionInterface = Interface< using TestStructFunctionInterface = Interface< Member, "two"> >; + +using TestArrayFunctionInterface = Interface< + Member, "three"> +>; } template @@ -72,4 +84,12 @@ SAW_TEST("CIface Struct Function Interface"){ test_generate(res); std::cout<<"\n"<(res); + std::cout<<"\n"<