dmd/compiler/test/compilable/test12593.d
2022-07-09 18:53:07 +02:00

12 lines
248 B
D

int[R] aa; // Place before the declaration of key struct
struct R
{
int opCmp(ref const R) const { return 0; }
//bool opEquals(ref const R) const { return true; }
//size_t toHash() const nothrow @safe { return 0; }
}
void main()
{}