dmd/compiler/test/fail_compilation/fail9735.d
2022-07-09 18:53:07 +02:00

11 lines
209 B
D

/*
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;
}