mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
209 B
D
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;
|
|
}
|