mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
156 B
D
11 lines
156 B
D
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);
|
|
}
|