1 #include "ctre.hpp"
2 
3 static constexpr inline auto pattern = ctll::fixed_string{"abcdefghijklmnopqrstuvwxy|abcdefghijklmnopqrstuvwxyz|abcdefghijklmnopqrstuvwxyz"};
4 
5 static constexpr inline auto a = ctre::re<pattern>();
6 
identify(T)7 template <typename T> void identify(T) { }
8 
fnc()9 void fnc() {
10 	identify(a);
11 }
12 
13 
14