blob: a6e521b03a31b0cb79e0c495b3d951ec23515f06 [file] [log] [blame]
module test17885;
struct T { ulong a, b; }
T f() { return T(); }
void main()
{
int[T] set = [f(): 0];
set.remove(f());
assert(f() !in set);
}