blob: 631468bc01cbf40702c7dbd1a150fbb86f59e9e9 [file] [log] [blame]
/*
REQUIRED_ARGS: -de
TEST_OUTPUT:
---
fail_compilation/fail9735.d(10): Deprecation: casting from void delegate() to void* is deprecated
---
*/
void* dg2ptr(void delegate() dg) {
return cast(void*) dg;
}