blob: 3ce7fc8f1898611f7f08501ab992b49e9e2185f8 [file] [log] [blame]
// PERMUTE_ARGS:
import algorithm = imports.test9271a;
bool any(alias predicate, Range)(Range range)
{
return algorithm.any!(predicate)(range);
}
void main()
{
auto arr = ["foo"];
any!(e => e == "asd")(arr); // infinite recursive call -> OK
}