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

13 lines
206 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail289.d(12): Error: cannot cast from function pointer to delegate
---
*/
alias void delegate() Dg;
void fun() {}
void gun()
{
Dg d = cast(void delegate())&fun;
}