mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
154 B
C
9 lines
154 B
C
// https://issues.dlang.org/show_bug.cgi?id=22577
|
|
|
|
typedef int(func)(void);
|
|
|
|
int one(void) { return 1; }
|
|
|
|
func* const fp1 = &one;
|
|
|
|
func* const fp2 = one;
|