blob: 71beb8562af9052d78df9d10622882e70ed11a58 [file] [log] [blame]
// see also: bug 8
// EXTRA_SOURCES: imports/bug846.d
import imports.bug846;
void main()
{
auto num = removeIf( "abcdef".dup, ( char c ) { return c == 'c'; } );
assert(num == 5);
}