blob: 18a7152001af8ac5ab7c8d70d6d7aad81193b6b7 [file] [log] [blame]
// REQUIRED_ARGS: -de
/*
TEST_OUTPUT:
---
fail_compilation/deprecate1553.d(18): Deprecation: cannot use `foreach_reverse` with a delegate
---
*/
struct S
{
int dg(int delegate(ref int a)) { return 0; }
}
void main()
{
S s;
foreach_reverse(a; &s.dg) {}
}