geocore/3party/cttrie/test_cstr.cpp
2019-10-29 10:17:47 +03:00

16 lines
213 B
C++

#include "cstr.h"
#include <stdio.h>
template <typename String>
void test(String str) {
// struct {}_=String();
printf("%d: %s\n",str.size(),str.data());
}
int main()
{
test(CSTR("Hello"));
return 0;
}