blob: 74d45643c8da7f46c4b55b10dad74b93d61eb1e3 [file] [log] [blame]
// REQUIRED_ARGS: -w
/*
TEST_OUTPUT:
---
fail_compilation/warn13679.d(15): Warning: cannot use `foreach_reverse` with an associative array
Error: warnings are treated as errors
Use -wi if you wish to treat warnings only as informational.
---
*/
void main()
{
int[int] aa;
foreach_reverse(k, v; aa) {}
}