dmd/compiler/test/fail_compilation/warn13679.d
2024-02-18 06:51:42 +08:00

14 lines
212 B
D

// REQUIRED_ARGS: -w
/*
TEST_OUTPUT:
---
fail_compilation/warn13679.d(13): Error: cannot use `foreach_reverse` with an associative array
---
*/
void main()
{
int[int] aa;
foreach_reverse(k, v; aa) {}
}