(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
b6395.d
// REQUIRED_ARGS: -Icompilable/extra-files
// EXTRA_FILES: extra-files/c6395.d

// https://issues.dlang.org/show_bug.cgi?id=6395

import c6395;

int regex(string pattern)
{
  return 0;
}

bool match(string r)
{
  return true;
}

void applyNoRemoveRegex()
{
  void scan(string[] noRemoveStr, string e)
  {
    auto a = find!((a){return match(e);})(map!regex(noRemoveStr));
  }
}