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