Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
dbd60023bf2929b361d3410ab3bdf623fd9a50f8
/
.
/
test
/
cases
/
bug-1229.cpp
blob: ec5bc61eb9b7746a011290b984e52db4fbc3a55b [
file
] [
log
] [
blame
] [
raw
]
#include
<ctre.hpp>
static
constexpr
auto
pattern
=
ctll
::
basic_fixed_string
{
"h.*"
};
constexpr
auto
match
(
std
::
string_view sv
)
noexcept
{
return
ctre
::
re
<pattern>
().
match
(
sv
);
}
void
myfunc
()
{
match
(
"hello"
);
}