26 lines
338 B
D
26 lines
338 B
D
// REQUIRED_ARGS: -Icompilable/extra-files
|
|
// EXTRA_FILES: extra-files/c6395.d
|
|
|
|
// 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));
|
|
}
|
|
}
|
|
|