blob: 3910ffa76ea8f6fb84997332caf97b06bc980758 [file] [log] [blame]
// 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));
}
}