mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
209 B
D
13 lines
209 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/aacmp10381.d(12): Error: `>` is not defined for associative arrays
|
|
---
|
|
*/
|
|
|
|
bool test10381()
|
|
{
|
|
int[int] aa1 = [0: 1];
|
|
int[int] aa2 = [0: 1];
|
|
return aa1 > aa2;
|
|
}
|